123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?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.OrganizationEvaluationCommonInfoMapper">
- <select id="selectListAll" resultType="com.ims.eval.entity.OrganizationEvaluationCommonInfo">
- SELECT
- *
- FROM organization_evaluation_common_info ci
- <where>
- <if test="organizationEvaluationId !=null and organizationEvaluationId !=''">
- and ci.organization_evaluation_id = #{organizationEvaluationId}
- </if>
- <if test="indicatorId !=null and indicatorId !=''">
- and ci.indicator_id = #{indicatorId}
- </if>
- <if test="organizationId !=null and organizationId !=''">
- and ci.organization_id = #{organizationId}
- </if>
- <if test="deptId !=null and deptId !=''">
- and ci.dept_id = #{deptId}
- </if>
- </where>
- </select>
- </mapper>
|