using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MDM.Models.Process.Dto { public class ProcessOperationFlowMaterialParamterDto { /// /// 所属工艺路线code /// public string? FkRoutingCode { get; set; } /// /// 所属工序code /// public string? FkOperationCode { get; set; } /// /// 所属流程code /// public string? FkFlowCode { get; set; } /// /// 物料编码 /// public string? MaterialCode { get; set; } /// /// 物料名称 /// public string? MaterialName { get; set; } /// /// 防错规则 /// public string? UseErrorProofRuleCode { get; set; } } }