From 70cc85b0674918e14a06154be5c323dffce46407 Mon Sep 17 00:00:00 2001
From: "DESKTOP-G961P6V\\Zhh" <839860190@qq.com>
Date: Sat, 20 Apr 2024 19:36:26 +0800
Subject: [PATCH] =?UTF-8?q?=E6=80=BB=E6=A3=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
 .../SumSuggestionHeaders/SumSuggestionDto.cs                | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
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();
         
 
     }