Valeo_Line_MES_backend/MDM/Models/Recipe/Dto/EffectiveRecipeDto.cs
quowingwang d55dcbc913 2
2026-01-10 16:52:02 +08:00

54 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MDM.Models.Recipe.Dto
{
public class EffectiveRecipeDto
{
/// <summary>
/// 工艺路线编码
/// </summary>
public string? FkRoutingCode { get; set; }
/// <summary>
/// 工序编码
/// </summary>
public string? FkOperationCode { get; set; }
/// <summary>
/// 产品,码
/// </summary>
public string Productcode { get; set; }
/// <summary>
/// 产品名称(原零件名称)
/// </summary>
public string ProductName { get; set; }
/// <summary>
/// 配方码(零件号)
/// </summary>
public string RecipeCode { get; set; }
/// <summary>
/// 版本号,如 V1.0
/// </summary>
public string Version { get; set; }
/// <summary>
/// 状态0作废1生效
/// </summary>
public int Status { get; set; }
}
}