68 lines
2.6 KiB
XML
68 lines
2.6 KiB
XML
<?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.ruoyi.system.mapper_yada.ESNOImpactMapper">
|
|
|
|
<resultMap id="ESNO_Impact_Subzone" type="com.ruoyi.system.domain_yada.vo.ESNOImpactSubzoneVo">
|
|
<result column="obviously_better" property="obviouslyBetter"/>
|
|
<result column="slightly_better" property="slightlyBetter"/>
|
|
<result column="unchanged" property="unchanged"/>
|
|
<result column="slightly_worse" property="slightlyWorse"/>
|
|
<result column="obviously_worse" property="obviouslyWorse"/>
|
|
</resultMap>
|
|
|
|
<resultMap id="ESNO_Impact_Subzone_Vai" type="com.ruoyi.system.domain_yada.vo.ESNOImpactSubzoneVaiVo">
|
|
<result column="region" property="region"/>
|
|
<result column="region_en" property="regionEn"/>
|
|
<result column="vai" property="vai"/>
|
|
</resultMap>
|
|
|
|
<resultMap id="ESNO_Impact_Country_Vai" type="com.ruoyi.system.domain_yada.vo.ESNOImpactCountryVaiVo">
|
|
<result column="country" property="country"/>
|
|
<result column="country_en" property="countryEn"/>
|
|
<result column="vai" property="vai"/>
|
|
</resultMap>
|
|
|
|
<resultMap id="ESNO_Impact_Subzone_Line" type="com.ruoyi.system.domain_yada.vo.ESNOImpactSubzoneLineVo">
|
|
<result column="year" property="year"/>
|
|
<result column="vai" property="vai"/>
|
|
</resultMap>
|
|
|
|
<select id="subzonePie" resultMap="ESNO_Impact_Subzone">
|
|
select obviously_better, slightly_better, unchanged, slightly_worse, obviously_worse
|
|
from esno_impact_subzone
|
|
where type = #{type}
|
|
and year = #{year}
|
|
and region = #{region}
|
|
</select>
|
|
|
|
<select id="subzoneVai" resultMap="ESNO_Impact_Subzone_Vai">
|
|
select region, region_en, vai
|
|
from esno_impact_subzone
|
|
where type = #{type}
|
|
and year = #{year}
|
|
</select>
|
|
|
|
<select id="countryVai" resultMap="ESNO_Impact_Country_Vai">
|
|
select country, country_en, vai
|
|
from esno_impact_country
|
|
where type = #{type}
|
|
and year = #{year}
|
|
and country = #{country}
|
|
</select>
|
|
|
|
<select id="subzoneVaiLine" resultMap="ESNO_Impact_Subzone_Line">
|
|
select year, vai
|
|
from esno_impact_subzone
|
|
where type = #{type}
|
|
and region = #{region}
|
|
<if test="start != null and start != ''">
|
|
and year >= #{start}
|
|
</if>
|
|
<if test="end != null and end != ''">
|
|
and #{end} >= year
|
|
</if>
|
|
</select>
|
|
|
|
</mapper> |