namespace DOAN.Model.MES.dev { /// /// 维修记录 /// [SugarTable("device_maintenance_record")] public class DeviceMaintenanceRecord { /// /// id雪花 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 维修单id /// [SugarColumn(ColumnName = "fk_repair_id")] public string FkRepairId { get; set; } /// /// 维修人 /// [SugarColumn(ColumnName = "maintanance_person")] public string MaintanancePerson { get; set; } /// /// 手机号 /// public string Phone { get; set; } /// /// 维修结果 /// public int? Result { get; set; } /// /// 维修时间 /// [SugarColumn(ColumnName = "maintenance_time")] public DateTime? MaintenanceTime { 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; } } }