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

52 lines
1008 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MDM.Models.Process.Dto
{
public class ProcessOperationFlowMaterialParamterDto
{
/// <summary>
/// 所属工艺路线code
/// </summary>
public string? FkRoutingCode { get; set; }
/// <summary>
/// 所属工序code
/// </summary>
public string? FkOperationCode { get; set; }
/// <summary>
/// 所属流程code
/// </summary>
public string? FkFlowCode { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public string? MaterialCode { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string? MaterialName { get; set; }
/// <summary>
/// 防错规则
/// </summary>
public string? UseErrorProofRuleCode { get; set; }
}
}