using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MDM.Models.Process.Dto { /// /// 工序管理流程Dto /// public class ProcessOperationFlowDto { public string? FkRoutingCode { get; set; } public string? FkOperationCode { get; set; } public string? FlowCode { get; set; } public string? FlowTypeCode { get; set; } public string? FlowTypeName { get; set; } } public class ProcessOperationFlowDto2 { public int id { get; set; } /// /// 流程code /// public string FlowCode { get; set; } public string FlowTypeCode { get; set; } public string FlowTypeName { get; set; } } }