123456789101112131415161718192021222324252627 |
- <?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.CalculateIndicatorItemInfoMapper">
- <select id="selectList" resultType="com.ims.eval.entity.CalculateIndicatorItemInfo">
- SELECT
- *
- FROM
- calculate_indicator_item_info a
- <where>
- 1=1
- <if test="organizationType !=null and organizationType !=''">
- and a.organization_type=#{organizationType}
- </if>
- <if test="checkCycle !=null and checkCycle !=''">
- and a.check_cycle=#{checkCycle}
- </if>
- <if test="year !=null and year !=''">
- and a.year=#{year}
- </if>
- <if test="month !=null and month !=''">
- and a.month=#{month}
- </if>
- </where>
- </select>
- </mapper>
|