|
|
@ -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("工作信息添加成功"); |
|
|
|