完成项目详情及招工申请

This commit is contained in:
2025-02-20 19:17:51 +08:00
parent b5c941b452
commit 0fefdd7352
8 changed files with 190 additions and 0 deletions

View File

@ -40,4 +40,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where>
</select>
<select id="userProjectDetails" resultType="com.ruoyi.wgz.bo.res.WgzAppProjectDetailsRes">
SELECT
a.*,
b.task_name,
b.task_address,
b.task_img
FROM
bgt_project_recruit as a
LEFT JOIN fbs_project_task as b ON (a.task_id = b.id AND b.del_flag = 0)
WHERE
a.id = #{id} AND a.del_flag = 0
</select>
</mapper>