1
This commit is contained in:
parent
33b25811de
commit
1dd36973c9
@ -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; }
|
||||
|
||||
|
||||
@ -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; }
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user