using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MDM.Models.Process { /// /// 工序流程 物料参数 /// [SugarTable("process_operation_flow_material_paramter", "工序流程 物料参数")] public class ProcessOperationFlowMaterialParamter { [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public int id { get; set; } /// /// 所属工艺路线code /// [SugarColumn(ColumnName = "fk_routing_code", Length = 50)] public string FkRoutingCode { get; set; } /// /// 所属工序code /// [SugarColumn(ColumnName = "fk_operation_code", Length = 50)] public string FkOperationCode { get; set; } /// /// 所属流程code /// [SugarColumn(ColumnName = "fk_flow_code", Length = 50)] public string FkFlowCode { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnName = "material_code", Length = 50)] public string MaterialCode { get; set; } /// /// 物料名称 /// [SugarColumn(ColumnName = "material_name", Length = 50)] public string MaterialName { get; set; } /// /// 防错规则 /// [SugarColumn(ColumnName = "use_error_proof_rule_code", Length = 50)] public string UseErrorProofRuleCode { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "created_by", Length = 50)] public string CreatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "updated_time")] public DateTime? UpdatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "updated_by", Length = 50)] public string UpdatedBy { get; set; } } }