2026-01-10 13:47:54 +08:00
|
|
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace RIZO.Model.MES.recipe.Dto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 配方参数明细表查询对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class PfRecipeParametersQueryDto : PagerInfo
|
|
|
|
|
{
|
2026-01-10 16:47:36 +08:00
|
|
|
public string? RecipeCode { get; set; }
|
|
|
|
|
public string? Version { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 配方参数明细表输入输出对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class PfRecipeParametersDto
|
|
|
|
|
{
|
|
|
|
|
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? ParamName { 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 string? Unit { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-10 17:31:49 +08:00
|
|
|
public decimal UpperLimit { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-10 17:31:49 +08:00
|
|
|
public decimal LowerLimit { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-10 17:01:38 +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 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:31:49 +08:00
|
|
|
public int Ifcheck { get; set; }
|
2026-01-10 13:47:54 +08:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|