namespace DOAN.Model.MES.process { /// /// 工序表 /// [SugarTable("processmodel_operation")] public class ProcessmodelOperation { /// /// 主键ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 工序编码 /// [SugarColumn(ColumnName = "operation_code")] public string OperationCode { get; set; } /// /// 工序名称 /// [SugarColumn(ColumnName = "operation_name")] public string OperationName { get; set; } /// /// 所属工艺路线ID /// [SugarColumn(ColumnName = "routing_id")] public int RoutingId { get; set; } /// /// 工序顺序号 /// [SugarColumn(ColumnName = "operation_seq")] public int OperationSeq { 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; } } }