using SqlSugar;
namespace DeviceRepair.Models.Plan.View
{
///
/// 数据源导入
///
[SugarTable("View_PM_Plan_Progress")]
public class View_PM_Plan_ProgressInfo
{
///
///
///
[SugarColumn(ColumnName = "PlanAutoID")]
public int PlanAutoID { get; set; }
///
///
///
[SugarColumn(ColumnName = "EquipmentID")]
public int EquipmentID { get; set; }
///
///
///
[SugarColumn(ColumnName = "PlanYear")]
public int PlanYear { get; set; }
///
///
///
[SugarColumn(ColumnName = "PlanMonth")]
public int PlanMonth { get; set; }
///
///
///
[SugarColumn(ColumnName = "PlanType")]
public string PlanType { get; set; }
///
///
///
[SugarColumn(ColumnName = "RecordAutoID")]
public int RecordAutoID { get; set; }
}
}