45 lines
961 B
C#
45 lines
961 B
C#
|
|
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; }
|
|
|
|
public string ParamName { 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? sequence { get; set; }
|
|
|
|
public int? Ifcheck { get; set; }
|
|
|
|
}
|
|
} |