CalculateIndicatorItemInfoMapper.xml 958 B

123456789101112131415161718192021222324252627
  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.CalculateIndicatorItemInfoMapper">
  4. <select id="selectList" resultType="com.ims.eval.entity.CalculateIndicatorItemInfo">
  5. SELECT
  6. *
  7. FROM
  8. calculate_indicator_item_info a
  9. <where>
  10. 1=1
  11. <if test="organizationType !=null and organizationType !=''">
  12. and a.organization_type=#{organizationType}
  13. </if>
  14. <if test="checkCycle !=null and checkCycle !=''">
  15. and a.check_cycle=#{checkCycle}
  16. </if>
  17. <if test="year !=null and year !=''">
  18. and a.year=#{year}
  19. </if>
  20. <if test="month !=null and month !=''">
  21. and a.month=#{month}
  22. </if>
  23. </where>
  24. </select>
  25. </mapper>