diff --git a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/JobServiceImpl.java b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/JobServiceImpl.java index a5f31db..ff2bfad 100644 --- a/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/JobServiceImpl.java +++ b/jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/JobServiceImpl.java @@ -282,14 +282,14 @@ public class JobServiceImpl implements JobService { return Result.error("未进行企业实名认证或企业实名认证审核未通过,请先去进行企业实名认证"); } //哥谭局用户标识判断用户是否通过企业实名认证,没有通过实名认证信息则不能发布工作岗位信息 - EmployAuthenticationPerson authenticationPerson = employAuthenticationPersonService - .lambdaQuery() - .eq(EmployAuthenticationPerson::getUserId, hanHaiMember.getId()) - .eq(EmployAuthenticationPerson::getStatus, "1") - .one(); - if(null == authenticationPerson){ - return Result.error("未进行个人实名认证或个人实名认证审核未通过,请先去进行个人实名认证"); - } +// EmployAuthenticationPerson authenticationPerson = employAuthenticationPersonService +// .lambdaQuery() +// .eq(EmployAuthenticationPerson::getUserId, hanHaiMember.getId()) +// .eq(EmployAuthenticationPerson::getStatus, "1") +// .one(); +// if(null == authenticationPerson){ +// return Result.error("未进行个人实名认证或个人实名认证审核未通过,请先去进行个人实名认证"); +// } employJob.setStatus("0"); employJobService.save(employJob); return Result.OK("工作信息添加成功");