From 057856c7373832b6b72f65d4f0b4a2ee68c20714 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Tue, 4 Mar 2025 15:34:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9F=A5=E6=8A=A5=E5=91=8A=E9=97=AE=E5=8D=B7?= =?UTF-8?q?=E9=99=90=E5=88=B6=20=20=20=E6=A0=BC=E5=B0=94=E6=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Shentun.WebPeis.Application/Persons/PersonAppService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Shentun.WebPeis.Application/Persons/PersonAppService.cs b/src/Shentun.WebPeis.Application/Persons/PersonAppService.cs index 610b003..a428118 100644 --- a/src/Shentun.WebPeis.Application/Persons/PersonAppService.cs +++ b/src/Shentun.WebPeis.Application/Persons/PersonAppService.cs @@ -584,7 +584,7 @@ namespace Shentun.WebPeis.Persons } #region 检查是否需要填写问卷 - var isQuestion = _customerOrgRegisterRepository.FirstOrDefaultAsync(f => f.CustomerOrgRegisterId == entity.CustomerOrgRegisterId && f.IsQuestion == 'Y'); + var isQuestion =await _customerOrgRegisterRepository.FirstOrDefaultAsync(f => f.CustomerOrgRegisterId == entity.CustomerOrgRegisterId && f.IsQuestion == 'Y'); if (isQuestion != null) { string baseAddress = _configuration.GetSection("MedicalHealthReport").GetSection("BaseAddress").Value;