123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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.PerformanceBenchmarkInfoMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.ims.eval.entity.PerformanceBenchmarkInfo">
- <id column="id" property="id"/>
- <result column="check_cycle" property="checkCycle"/>
- <result column="degree_year" property="degreeYear"/>
- <result column="quarterly_month" property="quarterlyMonth"/>
- <result column="manage_category" property="manageCategory"/>
- <result column="company_id" property="companyId"/>
- <result column="company_name" property="companyName"/>
- <result column="company_short" property="companyShort"/>
- <result column="install_capacity" property="installCapacity"/>
- <result column="index_name" property="indexName"/>
- <result column="planned_value" property="plannedValue"/>
- <result column="complete_value" property="completeValue"/>
- <result column="recommended_value" property="recommendedValue"/>
- <result column="scaling_value" property="scalingValue"/>
- <result column="is_bg" property="isBg"/>
- <result column="bg_val" property="bgVal"/>
- <result column="is_db" property="isDb"/>
- <result column="db_val" property="dbVal"/>
- <result column="is_cb" property="isCb"/>
- <result column="cb_val" property="cbVal"/>
- </resultMap>
- <!-- 通用查询结果列 -->
- <sql id="selectPerformanceBenchmarkInfoVo">
- select id,
- check_cycle,
- degree_year,
- quarterly_month,
- manage_category,
- company_id,
- company_name,
- company_short,
- install_capacity,
- index_name,
- planned_value,
- complete_value,
- recommended_value,
- scaling_value,
- is_bg,
- bg_val,
- is_db,
- db_val,
- is_cb,
- cb_val
- from performance_benchmark_info
- </sql>
- <select id="selectListPage" resultType="com.ims.eval.entity.PerformanceBenchmarkInfo">
- select * from performance_benchmark_info
- <where>
- <if test="manageCategory != null and manageCategory != ''">
- AND manage_category = #{manageCategory}
- </if>
- <if test="checkCycle != null and checkCycle != ''">
- AND check_cycle = #{checkCycle}
- </if>
- <if test="isBg == 1">
- AND is_bg = 1 order by bg_val desc
- </if>
- <if test="isDb == 2">
- AND is_db = 1 AND is_cb = 1 order by cb_val, db_val desc
- </if>
- <if test="isCb == 3">
- AND is_cb = 1 order by cb_val desc
- </if>
- </where>
- </select>
- </mapper>
|