前端-胡立永 1 week ago
parent
commit
2af18f3189
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/JobServiceImpl.java

+ 8
- 8
jeecg-boot-module-system/src/main/java/org/jeecg/modules/apiService/impl/JobServiceImpl.java View File

@ -282,14 +282,14 @@ public class JobServiceImpl implements JobService {
return Result.error("未进行企业实名认证或企业实名认证审核未通过,请先去进行企业实名认证"); 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"); employJob.setStatus("0");
employJobService.save(employJob); employJobService.save(employJob);
return Result.OK("工作信息添加成功"); return Result.OK("工作信息添加成功");


Loading…
Cancel
Save