This commit is contained in:
quowingwang 2026-01-10 17:01:38 +08:00
parent 33b25811de
commit 1dd36973c9
2 changed files with 12 additions and 12 deletions

View File

@ -19,19 +19,19 @@ namespace RIZO.Model.MES.recipe.Dto
{
public int Id { get; set; }
public string RecipeCode { get; set; }
public string? RecipeCode { get; set; }
public string ParamName { get; set; }
public string? ParamName { get; set; }
public string Version { get; set; }
public string? Version { get; set; }
public string Unit { get; set; }
public string? Unit { get; set; }
public decimal UpperLimit { get; set; }
public decimal? UpperLimit { get; set; }
public decimal LowerLimit { get; set; }
public decimal? LowerLimit { get; set; }
public string StandardValue { get; set; }
public string? StandardValue { get; set; }
public string? Remark { get; set; }

View File

@ -22,11 +22,11 @@ namespace RIZO.Model.MES.recipe.Dto
{
public int Id { get; set; }
public string RecipeCode { get; set; }
public string? RecipeCode { get; set; }
public string Version { get; set; }
public string? Version { get; set; }
public int Status { get; set; }
public int? Status { get; set; }
public string? CreatedBy { get; set; }
@ -43,9 +43,9 @@ namespace RIZO.Model.MES.recipe.Dto
public string? ProductName { get; set; }
//配方下达状态
public int IssueStatus { get; set; }
public int? IssueStatus { get; set; }
public int Sequence { get; set; }
public int? Sequence { get; set; }
public List<PfRecipeParametersDto> RecipeParametersList { get; set; }
}