From 2a61dfd53c0e7ee7029d58ae470df687744e9e0f Mon Sep 17 00:00:00 2001 From: quowingwang Date: Sat, 10 Jan 2026 17:24:45 +0800 Subject: [PATCH] 1 --- MDM/Models/Recipe/Dto/PfRecipeTemplateDto.cs | 12 ++++++------ MDM/Models/Recipe/Dto/PfRecipeVersionDto.cs | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/MDM/Models/Recipe/Dto/PfRecipeTemplateDto.cs b/MDM/Models/Recipe/Dto/PfRecipeTemplateDto.cs index 7bb86f7..fac9af6 100644 --- a/MDM/Models/Recipe/Dto/PfRecipeTemplateDto.cs +++ b/MDM/Models/Recipe/Dto/PfRecipeTemplateDto.cs @@ -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; } diff --git a/MDM/Models/Recipe/Dto/PfRecipeVersionDto.cs b/MDM/Models/Recipe/Dto/PfRecipeVersionDto.cs index 0eb3c9f..44e5fb2 100644 --- a/MDM/Models/Recipe/Dto/PfRecipeVersionDto.cs +++ b/MDM/Models/Recipe/Dto/PfRecipeVersionDto.cs @@ -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; }