zhuangpei-mesbackend/MDM/Models/Recipe/Dto/PfRecipeParametersDto.cs
gcw_MV9p2JJN 06e1e515fb 1
2025-12-31 11:45:08 +08:00

49 lines
1.1 KiB
C#

using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.MES.recipe.Dto
{
/// <summary>
/// 配方参数明细表查询对象
/// </summary>
public class PfRecipeParametersQueryDto : PagerInfo
{
public string RecipeCode { get; set; }
public string Version { get; set; }
}
/// <summary>
/// 配方参数明细表输入输出对象
/// </summary>
public class PfRecipeParametersDto
{
public int Id { get; set; }
public string RecipeCode { get; set; }
public string ParamName { get; set; }
public string Version { get; set; }
public string Unit { get; set; }
public decimal UpperLimit { get; set; }
public decimal LowerLimit { get; set; }
public string StandardValue { get; set; }
public string Remark { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public int Ifcheck { get; set; }
}
}