Valeo_Line_MES_backend/MDM/Models/Process/Dto/ProcessOperationBindFlowDto.cs

30 lines
665 B
C#
Raw Normal View History

2026-01-10 13:47:54 +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 ProcessOperationBindFlowDto
{
/// <summary>
/// 工艺流程code
/// </summary>
2026-01-12 11:13:10 +08:00
public string? FkRoutingCode { get; set; }
2026-01-10 13:47:54 +08:00
/// <summary>
/// 工序code
/// </summary>
2026-01-12 11:13:10 +08:00
public string? FkOperationCode { get; set; }
2026-01-10 13:47:54 +08:00
/// <summary>
/// 流程code数组
/// </summary>
2026-01-12 11:13:10 +08:00
public string[]? FlowCodeArray { get; set; }
2026-01-10 13:47:54 +08:00
}
}