总包方

This commit is contained in:
zt
2025-04-10 09:31:24 +08:00
parent 069529f78c
commit f1814f781c
52 changed files with 1119 additions and 98 deletions

View File

@ -52,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and bptp.task_id = #{dto.taskId}
</if>
</where>
order by bptp.id desc
</select>
<select id="getProgressByTaskIds" resultType="com.ruoyi.bgt.domain.BgtProjectTaskProgress">

View File

@ -21,5 +21,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="remark" column="remark"/>
</resultMap>
<select id="bgtList" resultType="com.ruoyi.zbf.domain.vo.ZbfSubBgtListVO">
SELECT u.id,
u.user_id,
u.username,
u.phone,
u.avatar_name
FROM fbs_project_task s
LEFT JOIN bgt_user u ON s.user_id = u.user_id
where s.sub_id = #{dto.subId} and s.user_id is not null
</select>
</mapper>