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);//隐患通知责任人 所在的部门级别负责人 }