namespace DOAN.Model.MES.process { /// /// 工序表 /// [SugarTable("processmodel_process")] public class ProcessmodelProcess { /// /// 主键ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 工序编码 /// [SugarColumn(ColumnName = "process_code")] public string ProcessCode { get; set; } /// /// 工序名称 /// [SugarColumn(ColumnName = "process_name")] public string ProcessName { get; set; } /// /// 所属工艺路线ID /// [SugarColumn(ColumnName = "routing_code")] public string RoutingCode { get; set; } /// /// 工序顺序号 /// [SugarColumn(ColumnName = "process_seq")] public int PorcessSeq { get; set; } /// /// 工作中心/设备/车间 /// [SugarColumn(ColumnName = "work_center")] public string WorkCenter { get; set; } /// /// 标准工时(单位:分钟) /// [SugarColumn(ColumnName = "standard_time")] public decimal StandardTime { get; set; } /// /// 工序描述 /// public string Description { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } /// /// 是否有效:1=有效,0=无效 /// [SugarColumn(ColumnName = "is_active")] public string IsActive { get; set; } } }