This commit is contained in:
quowingwang 2026-01-10 17:24:45 +08:00
parent c4fb2275d5
commit 2a61dfd53c
2 changed files with 7 additions and 7 deletions

View File

@ -17,15 +17,15 @@ namespace RIZO.Model.MES.recipe.Dto
{
public int Id { get; set; }
public string ParamName { get; set; }
public string? ParamName { 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; }
@ -33,7 +33,7 @@ namespace RIZO.Model.MES.recipe.Dto
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public string? UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }

View File

@ -36,7 +36,7 @@ namespace RIZO.Model.MES.recipe.Dto
public DateTime? UpdatedTime { get; set; }
public string StatusLabel { get; set; }
public string? StatusLabel { get; set; }
public string? ProductCode { get; set; }