| 1234567891011121314151617181920212223242526272829303132333435 |
- <?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>
- <if test="binSection !=null and binSection !=''">
- and a.section_id=#{binSection}
- </if>
- <if test="organizationEvaluationId !=null and organizationEvaluationId !=''">
- and a.organization_evaluation_id=#{organizationEvaluationId}
- </if>
- </where>
- </select>
- </mapper>
|