Valeo_Line_MES_backend/MDM/Models/Recipe/Dto/PfRecipeVersionDto.cs
quowingwang 549d100cc9 2
2026-01-10 17:33:27 +08:00

52 lines
1.2 KiB
C#

using System.ComponentModel.DataAnnotations;
namespace RIZO.Model.MES.recipe.Dto
{
/// <summary>
/// 配方版本控制表查询对象
/// </summary>
public class PfRecipeVersionQueryDto : PagerInfo
{
public string? RecipeCode { get; set; }
public string? Version { get; set; }
public int? Status { get; set; }
}
/// <summary>
/// 配方版本控制表输入输出对象
/// </summary>
public class PfRecipeVersionDto
{
public int Id { get; set; }
public string? RecipeCode { get; set; }
public string? Version { get; set; }
public int? Status { get; set; }
public string? CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string? UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
//public string? StatusLabel { get; set; }
public string? ProductCode { get; set; }
public string? ProductName { get; set; }
//配方下达状态
public int? IssueStatus { get; set; }
public int? Sequence { get; set; }
public List<PfRecipeParametersDto> RecipeParametersList { get; set; }
}
}