添加候选人列表返回hire录用状态
This commit is contained in:
@@ -18,4 +18,6 @@ public class CandidateVO extends AppUser {
|
|||||||
private String companyName;
|
private String companyName;
|
||||||
@Excel(name = "岗位名称", sort = 1)
|
@Excel(name = "岗位名称", sort = 1)
|
||||||
private String jobName;
|
private String jobName;
|
||||||
|
@Excel(name = "是否录用 0录用 null未录用 2不录用", sort = 2)
|
||||||
|
private String hire;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
ORDER BY ja.create_time DESC
|
ORDER BY ja.create_time DESC
|
||||||
</select>
|
</select>
|
||||||
<select id="candidates" resultType="com.ruoyi.cms.domain.vo.CandidateVO">
|
<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
|
from job_apply as jc
|
||||||
inner join app_user as au on jc.user_id = au.user_id
|
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'
|
where jc.job_id = #{jobId} and jc.del_flag = '0' and au.del_flag ='0'
|
||||||
|
|||||||
Reference in New Issue
Block a user