EvaluateRuleMapper.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.ims.eval.dao.EvaluateRuleMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.ims.eval.entity.EvaluateRule">
  6. <id column="id" property="id" />
  7. <result column="bin_section" property="binSection" />
  8. <result column="bin_stage" property="binStage" />
  9. <result column="des" property="des" />
  10. <result column="create_time" property="createTime" />
  11. <result column="create_by" property="createBy" />
  12. <result column="update_time" property="updateTime" />
  13. <result column="update_by" property="updateBy" />
  14. <result column="enable" property="enable" />
  15. <result column="rule_name" property="ruleName" />
  16. </resultMap>
  17. <!-- 通用查询结果列 -->
  18. <sql id="Base_Column_List">
  19. id, bin_section, bin_stage, des, create_time, create_by, update_time, update_by, enable, rule_name
  20. </sql>
  21. <select id="selectListPage" resultType="com.ims.eval.entity.EvaluateRule">
  22. SELECT
  23. r.*,
  24. b.stage_name binStageName,
  25. bs.section_name binSectionName
  26. FROM
  27. evaluate_rule r
  28. LEFT JOIN bin_stage b ON r.bin_stage = b.id
  29. LEFT JOIN bin_section bs ON r.bin_section = bs.id
  30. <where>
  31. r.enable = true
  32. <if test="id !=null and id !=''">
  33. AND r.id = #{id}
  34. </if>
  35. <if test="des !=null and des !=''">
  36. AND r.des like CONCAT('%',#{des},'%')
  37. </if>
  38. <if test="binSection !=null and binSection !=''">
  39. AND r.bin_section = #{binSection}
  40. </if>
  41. <if test="binStage !=null and binStage !=''">
  42. AND r.bin_stage = #{binStage}
  43. </if>
  44. <if test="checkCycle !=null and checkCycle !=''">
  45. AND r.check_cycle = #{checkCycle}
  46. </if>
  47. <if test="year !=null and year !=''">
  48. AND r.year = #{year}
  49. </if>
  50. order by r.year,r.bin_section desc
  51. </where>
  52. </select>
  53. <select id="selectListInIdsInfos" resultType="com.ims.eval.entity.dto.response.EvaluateRuleInfoResDTO">
  54. SELECT
  55. ri.*,
  56. r.bin_section,
  57. r.bin_stage,
  58. r.rule_name,
  59. r.enable,
  60. b.stage_name binStageName,
  61. bs.section_name binSectionName
  62. FROM
  63. evaluate_rule r
  64. inner join evaluate_rule_info ri on r.id = ri.evaluate_rule_id
  65. LEFT JOIN bin_stage b ON r.bin_stage = b.id
  66. LEFT JOIN bin_section bs ON r.bin_section = bs.id
  67. <where>
  68. <if test="ids !=null">
  69. AND r.id in
  70. <foreach item="item" collection="ids" separator="," open="(" close=")" index="">'${item}'</foreach>
  71. </if>
  72. <if test="binSection !=null and binSection !=''">
  73. AND r.bin_section = #{binSection}
  74. </if>
  75. <if test="binStage !=null and binStage !=''">
  76. AND r.bin_stage = #{binStage}
  77. </if>
  78. </where>
  79. </select>
  80. <select id="selectEvaluateRuleList" resultType="com.ims.eval.entity.EvaluateRule">
  81. SELECT
  82. r.*,
  83. b.stage_name binStageName,
  84. bs.section_name binSectionName
  85. FROM
  86. evaluate_rule r
  87. LEFT JOIN bin_stage b ON r.bin_stage = b.id
  88. LEFT JOIN bin_section bs ON r.bin_section = bs.id
  89. <where>
  90. r.enable = true
  91. <if test="binSection !=null and binSection !=''">
  92. AND r.bin_section = #{binSection}
  93. </if>
  94. <if test="binStage !=null and binStage !=''">
  95. AND r.bin_stage = #{binStage}
  96. </if>
  97. <if test="checkCycle !=null and checkCycle !=''">
  98. AND r.check_cycle = #{checkCycle}
  99. </if>
  100. <if test="year !=null and year !=''">
  101. AND r.year = #{year}
  102. </if>
  103. order by r.create_time desc
  104. </where>
  105. </select>
  106. <select id="getEvaluateRuleListByYear" resultType="com.ims.eval.entity.EvaluateRule">
  107. select * from evaluate_rule
  108. <where>
  109. enable = true
  110. <if test="year != null and year != ''">
  111. AND year = #{year}
  112. </if>
  113. <if test="checkCycle != null and checkCycle != ''">
  114. AND check_cycle = #{checkCycle}
  115. </if>
  116. <if test="manageCategory != null and manageCategory != ''">
  117. AND des like CONCAT('%',#{manageCategory},'%')
  118. </if>
  119. </where>
  120. </select>
  121. </mapper>