namespace MDM.Model.Process { /// /// 工艺路线 /// [SugarTable("process_routing")] public class ProcessRouting { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "routing_id")] public int RoutingId { get; set; } /// /// 产成品code /// [SugarColumn(ColumnName = "fk_product_material_code")] public string FkProductMaterialCode { get; set; } /// /// 工艺路线code /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "routing_code")] public string RoutingCode { get; set; } /// /// 工艺路线name /// [SugarColumn(ColumnName = "routing_name")] public string RoutingName { get; set; } /// /// 版本号 /// public int? Version { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 状态 /// public int? Status { get; set; } /// /// 生效日期时间 /// [SugarColumn(ColumnName = "effective_date")] public DateTime? EffectiveDate { 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; } } }