49 lines
2.2 KiB
XML
49 lines
2.2 KiB
XML
![]() |
<?xml version="1.0" encoding="UTF-8" ?>
|
||
|
<!DOCTYPE mapper
|
||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
<mapper namespace="com.ruoyi.bgt.mapper.BgtProjectTaskProgressMapper">
|
||
|
|
||
|
<resultMap type="com.ruoyi.bgt.domain.BgtProjectTaskProgress" id="BgtProjectTaskProgressResult">
|
||
|
<result property="id" column="id"/>
|
||
|
<result property="projectId" column="project_id"/>
|
||
|
<result property="sectionId" column="section_id"/>
|
||
|
<result property="subId" column="sub_id"/>
|
||
|
<result property="taskId" column="task_id"/>
|
||
|
<result property="progressName" column="progress_name"/>
|
||
|
<result property="director" column="director"/>
|
||
|
<result property="uploader" column="uploader"/>
|
||
|
<result property="progress" column="progress"/>
|
||
|
<result property="progressDescribe" column="progress_describe"/>
|
||
|
<result property="progressAnnex" column="progress_annex"/>
|
||
|
<result property="auditStatus" column="audit_status"/>
|
||
|
<result property="reviewerId" column="reviewer_id"/>
|
||
|
<result property="delFlag" column="del_flag"/>
|
||
|
<result property="createBy" column="create_by"/>
|
||
|
<result property="createTime" column="create_time"/>
|
||
|
<result property="updateBy" column="update_by"/>
|
||
|
<result property="updateTime" column="update_time"/>
|
||
|
<result property="remark" column="remark"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<select id="appQueryPageList" resultType="com.ruoyi.bgt.domain.vo.BgtProjectTaskProgressVO">
|
||
|
select bptp.id,
|
||
|
bptp.progress_name,
|
||
|
bptp.uploader,
|
||
|
bptp.progress,
|
||
|
bptp.audit_status,
|
||
|
bptp.create_time,
|
||
|
fpt.task_staff_num,
|
||
|
fpt.task_name,
|
||
|
zp.project_name
|
||
|
from bgt_project_task_progress bptp
|
||
|
left join fbs_project_task fpt on bptp.task_id = fpt.id
|
||
|
left join zbf_project zp on bptp.project_id = zp.id
|
||
|
where bptp.create_by = #{dto.createBy}
|
||
|
<if test="dto.auditStatus != null and dto.auditStatus != '' ">
|
||
|
and bptp.audit_status = #{dto.auditStatus}
|
||
|
</if>
|
||
|
</select>
|
||
|
|
||
|
</mapper>
|