更新:1.岗位录用,非录用修改。2.申请用户列表返回申请Id

This commit is contained in:
chenyanchang
2026-05-29 14:24:05 +08:00
parent 1f1a1cb138
commit 903a35b63b
3 changed files with 13 additions and 4 deletions

View File

@@ -104,7 +104,7 @@
</select>
<select id="selectApplyJobUserList" parameterType="com.ruoyi.common.core.domain.entity.AppUser" resultType="com.ruoyi.cms.domain.vo.CandidateVO">
select b.job_title jobName,l.name companyName,e.* from job_apply a
select a.id applyId, b.job_title jobName,l.name companyName,e.* from job_apply a
INNER join job b on a.job_id=b.job_id and b.del_flag='0'
INNER join app_user e on a.user_id =e.user_id and e.del_flag='0'
INNER join company l on b.company_id =l.company_id and l.del_flag='0'