Valeo_Line_MES_backend/MDM/Models/Process/Dto/ProcessOperationFlowDto.cs
gcw_MV9p2JJN b6e9c22fab 1
2026-01-10 16:37:48 +08:00

45 lines
842 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? FlowTypeCode { get; set; }
public string? FlowTypeName { get; set; }
}
public class ProcessOperationFlowDto2
{
public int id { get; set; }
/// <summary>
/// 流程code
/// </summary>
public string FlowCode { get; set; }
public string FlowTypeCode { get; set; }
public string FlowTypeName { get; set; }
}
}