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

30 lines
661 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>
public string FkRoutingCode { get; set; }
/// <summary>
/// 工序code
/// </summary>
public string FkOperationCode { get; set; }
/// <summary>
/// 流程code数组
/// </summary>
public string[] FlowCodeArray { get; set; }
}
}