添加候选人列表返回hire录用状态

This commit is contained in:
sh
2026-06-22 10:59:50 +08:00
parent 6ad695f52d
commit 0dfb45c25a
2 changed files with 3 additions and 1 deletions

View File

@@ -42,7 +42,7 @@
ORDER BY ja.create_time DESC
</select>
<select id="candidates" resultType="com.ruoyi.cms.domain.vo.CandidateVO">
SELECT au.*,jc.create_time as apply_date,jc.matching_degree,jc.id as applyId
SELECT au.*,jc.create_time as apply_date,jc.matching_degree,jc.id as applyId,jc.hire
from job_apply as jc
inner join app_user as au on jc.user_id = au.user_id
where jc.job_id = #{jobId} and jc.del_flag = '0' and au.del_flag ='0'