namespace DOAN.Model.MES.exception { /// /// 工单修改日志表 /// [SugarTable("pro_workorder_update_log")] public class ProWorkorderUpdateLog { /// /// 雪花 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 工单号 /// public string Workorder { get; set; } /// /// 日志 /// public string Log { get; set; } /// /// 责任人 /// [SugarColumn(ColumnName = "responsible_person")] public string ResponsiblePerson { get; set; } /// /// 产生原因 /// public string Reason { get; set; } /// /// 状态更改时间 /// [SugarColumn(ColumnName = "change_time")] public DateTime? ChangeTime { get; set; } /// /// 操作者 /// public string Operator { get; set; } /// /// CreatedTime /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } /// /// CreatedBy /// [SugarColumn(ColumnName = "created_by")] public string CreatedBy { get; set; } /// /// UpdatedTime /// [SugarColumn(ColumnName = "updated_time")] public DateTime? UpdatedTime { get; set; } /// /// UpdatedBy /// [SugarColumn(ColumnName = "updated_by")] public string UpdatedBy { get; set; } } }