using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model.MES.product { /// /// 工单状态时间节点表 /// [SugarTable("pro_workorder_status")] public class ProWorkorderStatus { /// /// 雪花 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 工单号 /// [SugarColumn(ColumnName = "fk_workorder_id")] public string FkWorkorderId { get; set; } /// /// 状态 /// public int? Status { get; set; } /// /// 状态更改时间 /// [SugarColumn(ColumnName = "change_time")] public DateTime? ChangeTime { get; set; } /// /// CreatedTime /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } } }