From eb363fd5640e5131a167472a6d2c715f0d9f01d7 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Tue, 26 Nov 2024 10:49:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/Doctor/DoctorService.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Doctor/DoctorService.cs b/IRaCIS.Core.Application/Service/Doctor/DoctorService.cs index 8d41dda22..a92d21a87 100644 --- a/IRaCIS.Core.Application/Service/Doctor/DoctorService.cs +++ b/IRaCIS.Core.Application/Service/Doctor/DoctorService.cs @@ -253,6 +253,12 @@ namespace IRaCIS.Core.Application.Service if (systemCount == 0) { inDto.IsMain = true; + + } + if (inDto.Indication.IsNullOrEmpty() && inDto.IndicationEn.IsNullOrEmpty()) + { + inDto.Indication = "默认"; + inDto.IndicationEn = "Default"; } }