1.修改保存是create_time为空情况

2.修改职务录用是,修改岗位申请表录用状态
This commit is contained in:
sh
2025-10-14 13:32:46 +08:00
parent 60a9445e6f
commit d843197e5b
6 changed files with 36 additions and 13 deletions

View File

@@ -40,7 +40,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
SELECT au.*,jc.create_time as apply_date,jc.matching_degree,jc.id as applyId
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'