using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MDM.Models.Process.Dto { /// /// 工序绑定工艺流程Dto /// public class ProcessOperationBindFlowDto { /// /// 工艺流程code /// public string? FkRoutingCode { get; set; } /// /// 工序code /// public string? FkOperationCode { get; set; } /// /// 流程code数组 /// public string[]? FlowCodeArray { get; set; } } }