namespace ZR.Model.MES.dev { /// /// 点检任务 /// [SugarTable("device_point_inspection_plan")] public class DevicePointInspectionPlan { /// /// id(雪花) /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 点检检名称 /// public string Name { get; set; } /// /// 执行人 /// [SugarColumn(ColumnName = "fk_person_id")] public string FkPersonId { get; set; } /// /// 点检状态 /// public int? Status { get; set; } /// /// 类型(内部) 1是检查 2是保养 /// [SugarColumn(ColumnName = "inner_type")] public int? InnerType { get; set; } /// /// 备注 /// public string Remark { 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; } } }