zhuangpei-mesbackend/MDM/Models/Process/Dto/ProcessOperationFlowDto.cs
gcw_MV9p2JJN 646ee1e7ea 1
2025-12-31 15:16:17 +08:00

31 lines
540 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MDM.Models.Process.Dto
{
/// <summary>
/// 工序管理流程Dto
/// </summary>
public class ProcessOperationFlowDto
{
public string FkRoutingCode { get; set; }
public string FkOperationCode { get; set; }
public string FlowCode { get; set; }
public string FlowName { get; set; }
public int FlowId { get; set; }
}
}