zhuangpei-mesbackend/MDM/Models/Process/Dto/ProcessOperationFlowDto.cs

30 lines
552 B
C#
Raw Normal View History

2025-12-31 10:27:05 +08:00
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; }
2025-12-31 15:16:17 +08:00
2025-12-31 15:40:54 +08:00
public string FlowTypeCode { get; set; }
2025-12-31 15:16:17 +08:00
2025-12-31 15:40:54 +08:00
public string FlowTypeName { get; set; }
2025-12-31 10:27:05 +08:00
}
}