From b02edb134801bee7a5bc60afbff5b0c76eb9d9a4 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Sat, 20 Apr 2024 11:04:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=8A=E6=96=AD=E5=BB=BA=E8=AE=AE=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Suggestions/CreateSuggestionManyDto.cs | 2 +- src/Shentun.Peis.Domain.Shared/Enums/SuggestionTypeFlag.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Shentun.Peis.Application.Contracts/Suggestions/CreateSuggestionManyDto.cs b/src/Shentun.Peis.Application.Contracts/Suggestions/CreateSuggestionManyDto.cs index 19db928..a5195d8 100644 --- a/src/Shentun.Peis.Application.Contracts/Suggestions/CreateSuggestionManyDto.cs +++ b/src/Shentun.Peis.Application.Contracts/Suggestions/CreateSuggestionManyDto.cs @@ -15,7 +15,7 @@ namespace Shentun.Peis.Suggestions public Guid DiagnosisId { get; set; } /// - /// 建议类型(0-代表医学解释,1-代表健康指导) + /// 建议类型(0-代表医学解释,1-代表常见原因,2-代表健康指导) /// public char SuggestionType { get; set; } diff --git a/src/Shentun.Peis.Domain.Shared/Enums/SuggestionTypeFlag.cs b/src/Shentun.Peis.Domain.Shared/Enums/SuggestionTypeFlag.cs index 80d4abd..a231bba 100644 --- a/src/Shentun.Peis.Domain.Shared/Enums/SuggestionTypeFlag.cs +++ b/src/Shentun.Peis.Domain.Shared/Enums/SuggestionTypeFlag.cs @@ -21,7 +21,7 @@ namespace Shentun.Peis.Enums public const char CommonReasons = '1'; /// - /// 常见原因 + /// 健康指导 /// [Description("健康指导")] public const char HealthGuidance = '2';