namespace DOAN.Model.MES.dev { /// /// 设备检查项 /// [SugarTable("device_inspect")] public class DeviceInspect { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 图片 /// public string Image { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 检查项状态 /// public int? Status { get; set; } /// /// 描述 /// public string Descride { get; set; } /// /// 检查项名称 /// public string Name { get; set; } /// /// 1:检查 2:保养 /// [SugarColumn(ColumnName = "type")] public int Type { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }