This commit is contained in:
2025-03-11 17:41:42 +08:00
parent 68386c1551
commit a203d73e20
10 changed files with 40 additions and 11 deletions

View File

@ -60,6 +60,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="userRegisteredProject" resultType="com.ruoyi.wgz.bo.res.WgzAppRegisteredProjectRes">
SELECT
a.id as recruitApplyId,
a.status as statusApply,
b.*,
c.task_name,
c.task_address,
@ -75,6 +76,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
a.user_id = #{userId} AND
(a.status = '0' or a.status = '1') AND
a.del_flag = 0
order by create_time desc
</select>
<select id="GetsTheMembersUnderTheCurrentProject" resultType="com.ruoyi.wgz.bo.rests.WgzAppCancelRegistrationProjectDetailsTwo">

View File

@ -53,7 +53,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
LEFT JOIN bgt_user b ON (a.auditor_user_id = b.user_id and b.del_flag = 0)
LEFT JOIN wgz_user c ON (a.user_id = c.user_id and c.del_flag = 0)
WHERE
a.user_id = #{userId} and a.del_flag = 0
a.id = #{id} and a.del_flag = 0
ORDER BY
a.id DESC
</select>