总包方
This commit is contained in:
@ -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">
|
||||
|
@ -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>
|
||||
|
Reference in New Issue
Block a user