From 4ddcafac31c334c5fca3266c65336eecdf4536b2 Mon Sep 17 00:00:00 2001 From: wyw <571921741@qq.com> Date: Sun, 7 Apr 2024 15:55:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BB=B6=E6=9C=9F=E5=A4=84=E7=90=86=20?= =?UTF-8?q?=E4=BA=BA=E5=91=98=E7=A9=BA=20=E5=88=A4=E6=96=AD=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/Api/BSRiskSubmitDelayApplyController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/APT.MicroApi/APT.BS.WebApi/Controllers/Api/BSRiskSubmitDelayApplyController.cs b/APT.MicroApi/APT.BS.WebApi/Controllers/Api/BSRiskSubmitDelayApplyController.cs index 99b3096..660d085 100644 --- a/APT.MicroApi/APT.BS.WebApi/Controllers/Api/BSRiskSubmitDelayApplyController.cs +++ b/APT.MicroApi/APT.BS.WebApi/Controllers/Api/BSRiskSubmitDelayApplyController.cs @@ -384,7 +384,7 @@ namespace APT.BS.WebApi.Controllers.Api userModelNotice = GetEntity(listContent[0].USER_ID.Value); } var userModel = GetDepartMentLevelMaster(userModelNotice);//隐患通知责任人 - if (userModel != null && userModel.ID != Guid.Empty) + if (userModel != null && !string.IsNullOrEmpty(userModel.NAME)) { dicApproveUser.Add(3, userModel);//隐患通知责任人 所在的部门级别负责人 }