修改用户通用附件获取

This commit is contained in:
2025-02-25 17:59:04 +08:00
parent 293560e4a3
commit 02c2960af4
16 changed files with 219 additions and 45 deletions

View File

@ -57,6 +57,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="userRegisteredProject" resultType="com.ruoyi.wgz.bo.res.WgzAppRegisteredProjectRes">
SELECT
a.id as recruitApplyId,
b.*,
c.task_name,
c.task_address,
@ -67,7 +68,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
LEFT JOIN bgt_project_recruit as b on(a.recruit_id = b.id and b.del_flag = 0 )
LEFT JOIN fbs_project_task as c ON (b.task_id = c.id AND c.del_flag = 0)
WHERE
a.user_id = #{id} AND
a.user_id = #{userId} AND
(a.status = '0' or a.status = '1') AND
a.del_flag = 0
</select>