123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?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.ims.eval.dao.EvaluateRuleMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.ims.eval.entity.EvaluateRule">
- <id column="id" property="id" />
- <result column="bin_section" property="binSection" />
- <result column="bin_stage" property="binStage" />
- <result column="des" property="des" />
- <result column="create_time" property="createTime" />
- <result column="create_by" property="createBy" />
- <result column="update_time" property="updateTime" />
- <result column="update_by" property="updateBy" />
- <result column="enable" property="enable" />
- <result column="rule_name" property="ruleName" />
- </resultMap>
- <!-- 通用查询结果列 -->
- <sql id="Base_Column_List">
- id, bin_section, bin_stage, des, create_time, create_by, update_time, update_by, enable, rule_name
- </sql>
- <select id="selectListPage" resultType="com.ims.eval.entity.EvaluateRule">
- SELECT
- r.*,
- b.stage_name binStageName,
- bs.section_name binSectionName
- FROM
- evaluate_rule r
- LEFT JOIN bin_stage b ON r.bin_stage = b.id
- LEFT JOIN bin_section bs ON r.bin_section = bs.id
- <where>
- r.enable = true
- <if test="id !=null and id !=''">
- AND r.id = #{id}
- </if>
- <if test="des !=null and des !=''">
- AND r.des like CONCAT('%',#{des},'%')
- </if>
- <if test="binSection !=null and binSection !=''">
- AND r.bin_section = #{binSection}
- </if>
- <if test="binStage !=null and binStage !=''">
- AND r.bin_stage = #{binStage}
- </if>
- <if test="checkCycle !=null and checkCycle !=''">
- AND r.check_cycle = #{checkCycle}
- </if>
- <if test="year !=null and year !=''">
- AND r.year = #{year}
- </if>
- order by r.year,r.bin_section desc
- </where>
- </select>
- <select id="selectListInIdsInfos" resultType="com.ims.eval.entity.dto.response.EvaluateRuleInfoResDTO">
- SELECT
- ri.*,
- r.bin_section,
- r.bin_stage,
- r.rule_name,
- r.enable,
- b.stage_name binStageName,
- bs.section_name binSectionName
- FROM
- evaluate_rule r
- inner join evaluate_rule_info ri on r.id = ri.evaluate_rule_id
- LEFT JOIN bin_stage b ON r.bin_stage = b.id
- LEFT JOIN bin_section bs ON r.bin_section = bs.id
- <where>
- <if test="ids !=null">
- AND r.id in
- <foreach item="item" collection="ids" separator="," open="(" close=")" index="">'${item}'</foreach>
- </if>
- <if test="binSection !=null and binSection !=''">
- AND r.bin_section = #{binSection}
- </if>
- <if test="binStage !=null and binStage !=''">
- AND r.bin_stage = #{binStage}
- </if>
- </where>
- </select>
- <select id="selectEvaluateRuleList" resultType="com.ims.eval.entity.EvaluateRule">
- SELECT
- r.*,
- b.stage_name binStageName,
- bs.section_name binSectionName
- FROM
- evaluate_rule r
- LEFT JOIN bin_stage b ON r.bin_stage = b.id
- LEFT JOIN bin_section bs ON r.bin_section = bs.id
- <where>
- r.enable = true
- <if test="binSection !=null and binSection !=''">
- AND r.bin_section = #{binSection}
- </if>
- <if test="binStage !=null and binStage !=''">
- AND r.bin_stage = #{binStage}
- </if>
- <if test="checkCycle !=null and checkCycle !=''">
- AND r.check_cycle = #{checkCycle}
- </if>
- <if test="year !=null and year !=''">
- AND r.year = #{year}
- </if>
- order by r.create_time desc
- </where>
- </select>
- <select id="getEvaluateRuleListByYear" resultType="com.ims.eval.entity.EvaluateRule">
- select * from evaluate_rule
- <where>
- enable = true
- <if test="year != null and year != ''">
- AND year = #{year}
- </if>
- <if test="checkCycle != null and checkCycle != ''">
- AND check_cycle = #{checkCycle}
- </if>
- <if test="manageCategory != null and manageCategory != ''">
- AND des like CONCAT('%',#{manageCategory},'%')
- </if>
- </where>
- </select>
- </mapper>
|