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

45 lines
967 B
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 PfRecipeTemplateQueryDto : PagerInfo
{
}
/// <summary>
/// 配方模板表输入输出对象
/// </summary>
public class PfRecipeTemplateDto
{
public int Id { get; set; }
2026-01-10 17:24:45 +08:00
public string? ParamName { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 17:24:45 +08:00
public string? Unit { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 17:24:45 +08:00
public decimal? UpperLimit { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 17:24:45 +08:00
public decimal? LowerLimit { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 17:24:45 +08:00
public string? StandardValue { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 16:52:02 +08:00
public string? Remark { 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 17:24:45 +08:00
public string? UpdatedBy { get; set; }
2026-01-10 13:47:54 +08:00
public DateTime? UpdatedTime { get; set; }
2026-01-10 16:52:02 +08:00
public int? sequence { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-10 16:52:02 +08:00
public int? Ifcheck { get; set; }
2026-01-10 13:47:54 +08:00
}
}