From e547993a3c78d0bd75f3fdef4a9878e180d73d36 Mon Sep 17 00:00:00 2001 From: 龚焕茏 <2842157468@qq.com> Date: 星期一, 29 四月 2024 17:52:26 +0800 Subject: [PATCH] 合同考核结果定时任务、详情、查询、导出 --- ycl-server/src/main/resources/mapper/zgyw/CheckResultMapper.xml | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/ycl-server/src/main/resources/mapper/zgyw/CheckResultMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/CheckResultMapper.xml index b5e1958..a0cb132 100644 --- a/ycl-server/src/main/resources/mapper/zgyw/CheckResultMapper.xml +++ b/ycl-server/src/main/resources/mapper/zgyw/CheckResultMapper.xml @@ -3,4 +3,25 @@ <mapper namespace="com.ycl.platform.mapper.CheckResultMapper"> + <select id="selectCheckResultList" resultType="com.ycl.platform.domain.vo.CheckResultVO"> + SELECT c.*, + u.unit_name AS unitName, + ct.name AS contractName + FROM t_contract_result c + LEFT JOIN + t_yw_unit u ON c.unit_id = u.id and u.deleted = '0' + LEFT JOIN + t_contract ct ON c.contract_id = ct.id and ct.deleted = '0' + where + c.deleted = '0' + <if test="unitId != null"> + AND c.unit_id = #{unitId} + </if> + <if test="createStartTime != null"> + AND c.check_time BETWEEN #{createStartTime} AND #{createEndTime} + </if> + <if test="publish != null"> + AND c.publish = #{publish} + </if> + </select> </mapper> -- Gitblit v1.8.0