From ec5a6ede3f88abebdf7a280744ea762757f310aa Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 30 四月 2024 13:41:27 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ycl-server/src/main/resources/mapper/zgyw/CheckResultMapper.xml | 27 +++++++++++++++++++++++++++ 1 files changed, 27 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 new file mode 100644 index 0000000..a0cb132 --- /dev/null +++ b/ycl-server/src/main/resources/mapper/zgyw/CheckResultMapper.xml @@ -0,0 +1,27 @@ +<?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.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