diff --git a/src/Shentun.Peis.Application.Contracts/SumSuggestionHeaders/SumSuggestionDto.cs b/src/Shentun.Peis.Application.Contracts/SumSuggestionHeaders/SumSuggestionDto.cs index c44992e..2c0c820 100644 --- a/src/Shentun.Peis.Application.Contracts/SumSuggestionHeaders/SumSuggestionDto.cs +++ b/src/Shentun.Peis.Application.Contracts/SumSuggestionHeaders/SumSuggestionDto.cs @@ -27,15 +27,15 @@ namespace Shentun.Peis.SumSuggestionHeaders /// /// 医学解释 /// - public List MedicalInterpretations = new List(); + public List MedicalInterpretations { get; set; } = new List(); /// /// 常见原因 /// - public List CommonReasons = new List(); + public List CommonReasons { get; set; } = new List(); /// /// 健康指导 /// - public List HealthGuidances = new List(); + public List HealthGuidances { get; set; } = new List(); }