Valeo_Line_MES_backend/MDM/Models/Recipe/Dto/PfRecipeVersionDto.cs

52 lines
1.2 KiB
C#
Raw Normal View History

2026-01-10 13:47:54 +08:00
using System.ComponentModel.DataAnnotations;
namespace RIZO.Model.MES.recipe.Dto
{
/// <summary>
/// 配方版本控制表查询对象
/// </summary>
public class PfRecipeVersionQueryDto : PagerInfo
{
2026-01-10 16:47:36 +08:00
public string? RecipeCode { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 16:47:36 +08:00
public string? Version { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 16:47:36 +08:00
public int? Status { get; set; }
2026-01-10 13:47:54 +08:00
}
/// <summary>
/// 配方版本控制表输入输出对象
/// </summary>
public class PfRecipeVersionDto
{
public int Id { get; set; }
2026-01-10 17:01:38 +08:00
public string? RecipeCode { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 17:01:38 +08:00
public string? Version { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 17:01:38 +08:00
public int? Status { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 16:52:02 +08:00
public string? CreatedBy { get; set; }
2026-01-10 13:47:54 +08:00
public DateTime? CreatedTime { get; set; }
2026-01-10 16:52:02 +08:00
public string? UpdatedBy { get; set; }
2026-01-10 13:47:54 +08:00
public DateTime? UpdatedTime { get; set; }
2026-01-10 17:24:45 +08:00
public string? StatusLabel { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 16:52:02 +08:00
public string? ProductCode { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 16:52:02 +08:00
public string? ProductName { get; set; }
2026-01-10 13:47:54 +08:00
//配方下达状态
2026-01-10 17:01:38 +08:00
public int? IssueStatus { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 17:01:38 +08:00
public int? Sequence { get; set; }
2026-01-10 13:47:54 +08:00
public List<PfRecipeParametersDto> RecipeParametersList { get; set; }
}
}