1.添加确认时保存app用户录用消息

2.添加岗位发布时给收藏此企业用户移动用户新岗位消息
This commit is contained in:
sh
2025-11-06 17:30:33 +08:00
parent 1b7d5c5451
commit f4370ac912
15 changed files with 182 additions and 26 deletions

View File

@@ -322,4 +322,10 @@
<include refid="selectAppUserResult"/>inner join app_user a on e.user_id =a.user_id and a.del_flag='0'
where e.del_flag='0' and e.job_id=#{jobId}
</select>
<select id="getJobInfo" resultType="com.ruoyi.cms.domain.Job">
SELECT j.*,c.code,c.name as companyName,c.company_id FROM job as j
left join company as c on c.company_id = j.company_id and j.del_flag='0' and j.job_id=#{jobId}
and c.del_flag='0' limit 1
</select>
</mapper>