|
@@ -11,20 +11,26 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="realOne" column="real_one" />
|
|
|
<result property="hsForecastOne" column="hs_forecast_one" />
|
|
|
<result property="hsErrorRateOne" column="hs_error_rate_one" />
|
|
|
+ <result property="hsOneSubtract" column="hs_one_subtract" />
|
|
|
<result property="yyForecastOne" column="yy_forecast_one" />
|
|
|
<result property="yyErrorRateOne" column="yy_error_rate_one" />
|
|
|
+ <result property="yyOneSubtract" column="yy_one_subtract" />
|
|
|
<result property="forecastTimeTwo" column="forecast_time_two" />
|
|
|
<result property="realTwo" column="real_two" />
|
|
|
<result property="hsForecastTwo" column="hs_forecast_two" />
|
|
|
<result property="hsErrorRateTwo" column="hs_error_rate_two" />
|
|
|
+ <result property="hsTwoSubtract" column="hs_two_subtract" />
|
|
|
<result property="yyForecastTwo" column="yy_forecast_two" />
|
|
|
<result property="yyErrorRateTwo" column="yy_error_rate_two" />
|
|
|
+ <result property="yyTwoSubtract" column="yy_two_subtract" />
|
|
|
<result property="forecastTimeThree" column="forecast_time_three" />
|
|
|
<result property="realThree" column="real_three" />
|
|
|
<result property="hsForecastThree" column="hs_forecast_three" />
|
|
|
<result property="hsErrorRateThree" column="hs_error_rate_three" />
|
|
|
+ <result property="hsThreeSubtract" column="hs_three_subtract" />
|
|
|
<result property="yyForecastThree" column="yy_forecast_three" />
|
|
|
<result property="yyErrorRateThree" column="yy_error_rate_three" />
|
|
|
+ <result property="yyThreeSubtract" column="yy_three_subtract" />
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
<result property="revision" column="revision" />
|
|
|
<result property="createBy" column="create_by" />
|
|
@@ -35,36 +41,39 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTXinyiForecastComparisonVo">
|
|
|
- select id, category, forecast_time_one, real_one, hs_forecast_one, hs_error_rate_one, yy_forecast_one, yy_error_rate_one, forecast_time_two, real_two, hs_forecast_two, hs_error_rate_two, yy_forecast_two, yy_error_rate_two, forecast_time_three, real_three, hs_forecast_three, hs_error_rate_three, yy_forecast_three, yy_error_rate_three, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_xinyi_forecast_comparison
|
|
|
+ select id, category, forecast_time_one, real_one, hs_forecast_one, hs_error_rate_one, hs_one_subtract, yy_forecast_one, yy_error_rate_one, yy_one_subtract, forecast_time_two, real_two, hs_forecast_two, hs_error_rate_two, hs_two_subtract, yy_forecast_two, yy_error_rate_two, yy_two_subtract, forecast_time_three, real_three, hs_forecast_three, hs_error_rate_three, hs_three_subtract, yy_forecast_three, yy_error_rate_three, yy_three_subtract, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_xinyi_forecast_comparison
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTXinyiForecastComparisonList" parameterType="TXinyiForecastComparison" resultMap="TXinyiForecastComparisonResult">
|
|
|
<include refid="selectTXinyiForecastComparisonVo"/>
|
|
|
<where>
|
|
|
- 1 = 1 and category != 'xsy1' and category != 'xsy2'
|
|
|
+ 1 = 1
|
|
|
<if test="category != null and category != ''"> and category = #{category}</if>
|
|
|
<if test="forecastTimeOne != null and forecastTimeOne != ''"> and forecast_time_one = #{forecastTimeOne}</if>
|
|
|
<if test="realOne != null "> and real_one = #{realOne}</if>
|
|
|
<if test="hsForecastOne != null "> and hs_forecast_one = #{hsForecastOne}</if>
|
|
|
<if test="hsErrorRateOne != null "> and hs_error_rate_one = #{hsErrorRateOne}</if>
|
|
|
+ <if test="hsOneSubtract != null "> and hs_one_subtract = #{hsOneSubtract}</if>
|
|
|
<if test="yyForecastOne != null "> and yy_forecast_one = #{yyForecastOne}</if>
|
|
|
<if test="yyErrorRateOne != null "> and yy_error_rate_one = #{yyErrorRateOne}</if>
|
|
|
+ <if test="yyOneSubtract != null "> and yy_one_subtract = #{yyOneSubtract}</if>
|
|
|
<if test="forecastTimeTwo != null and forecastTimeTwo != ''"> and forecast_time_two = #{forecastTimeTwo}</if>
|
|
|
<if test="realTwo != null "> and real_two = #{realTwo}</if>
|
|
|
<if test="hsForecastTwo != null "> and hs_forecast_two = #{hsForecastTwo}</if>
|
|
|
<if test="hsErrorRateTwo != null "> and hs_error_rate_two = #{hsErrorRateTwo}</if>
|
|
|
+ <if test="hsTwoSubtract != null "> and hs_two_subtract = #{hsTwoSubtract}</if>
|
|
|
<if test="yyForecastTwo != null "> and yy_forecast_two = #{yyForecastTwo}</if>
|
|
|
<if test="yyErrorRateTwo != null "> and yy_error_rate_two = #{yyErrorRateTwo}</if>
|
|
|
+ <if test="yyTwoSubtract != null "> and yy_two_subtract = #{yyTwoSubtract}</if>
|
|
|
<if test="forecastTimeThree != null and forecastTimeThree != ''"> and forecast_time_three = #{forecastTimeThree}</if>
|
|
|
<if test="realThree != null "> and real_three = #{realThree}</if>
|
|
|
<if test="hsForecastThree != null "> and hs_forecast_three = #{hsForecastThree}</if>
|
|
|
<if test="hsErrorRateThree != null "> and hs_error_rate_three = #{hsErrorRateThree}</if>
|
|
|
+ <if test="hsThreeSubtract != null "> and hs_three_subtract = #{hsThreeSubtract}</if>
|
|
|
<if test="yyForecastThree != null "> and yy_forecast_three = #{yyForecastThree}</if>
|
|
|
<if test="yyErrorRateThree != null "> and yy_error_rate_three = #{yyErrorRateThree}</if>
|
|
|
+ <if test="yyThreeSubtract != null "> and yy_three_subtract = #{yyThreeSubtract}</if>
|
|
|
<if test="revision != null "> and revision = #{revision}</if>
|
|
|
- <if test="timeBegin != null and timeBegin != ''"> and remark >= #{timeBegin}</if>
|
|
|
- <if test="timeEnd != null and timeEnd != ''"> and remark <= #{timeEnd}</if>
|
|
|
- <if test="remark != null and remark != ''"> and remark = #{remark}</if>
|
|
|
</where>
|
|
|
and del_flag = 0 order by id desc
|
|
|
</select>
|
|
@@ -82,20 +91,26 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="realOne != null">real_one,</if>
|
|
|
<if test="hsForecastOne != null">hs_forecast_one,</if>
|
|
|
<if test="hsErrorRateOne != null">hs_error_rate_one,</if>
|
|
|
+ <if test="hsOneSubtract != null">hs_one_subtract,</if>
|
|
|
<if test="yyForecastOne != null">yy_forecast_one,</if>
|
|
|
<if test="yyErrorRateOne != null">yy_error_rate_one,</if>
|
|
|
+ <if test="yyOneSubtract != null">yy_one_subtract,</if>
|
|
|
<if test="forecastTimeTwo != null">forecast_time_two,</if>
|
|
|
<if test="realTwo != null">real_two,</if>
|
|
|
<if test="hsForecastTwo != null">hs_forecast_two,</if>
|
|
|
<if test="hsErrorRateTwo != null">hs_error_rate_two,</if>
|
|
|
+ <if test="hsTwoSubtract != null">hs_two_subtract,</if>
|
|
|
<if test="yyForecastTwo != null">yy_forecast_two,</if>
|
|
|
<if test="yyErrorRateTwo != null">yy_error_rate_two,</if>
|
|
|
+ <if test="yyTwoSubtract != null">yy_two_subtract,</if>
|
|
|
<if test="forecastTimeThree != null">forecast_time_three,</if>
|
|
|
<if test="realThree != null">real_three,</if>
|
|
|
<if test="hsForecastThree != null">hs_forecast_three,</if>
|
|
|
<if test="hsErrorRateThree != null">hs_error_rate_three,</if>
|
|
|
+ <if test="hsThreeSubtract != null">hs_three_subtract,</if>
|
|
|
<if test="yyForecastThree != null">yy_forecast_three,</if>
|
|
|
<if test="yyErrorRateThree != null">yy_error_rate_three,</if>
|
|
|
+ <if test="yyThreeSubtract != null">yy_three_subtract,</if>
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
<if test="revision != null">revision,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
@@ -110,20 +125,26 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="realOne != null">#{realOne},</if>
|
|
|
<if test="hsForecastOne != null">#{hsForecastOne},</if>
|
|
|
<if test="hsErrorRateOne != null">#{hsErrorRateOne},</if>
|
|
|
+ <if test="hsOneSubtract != null">#{hsOneSubtract},</if>
|
|
|
<if test="yyForecastOne != null">#{yyForecastOne},</if>
|
|
|
<if test="yyErrorRateOne != null">#{yyErrorRateOne},</if>
|
|
|
+ <if test="yyOneSubtract != null">#{yyOneSubtract},</if>
|
|
|
<if test="forecastTimeTwo != null">#{forecastTimeTwo},</if>
|
|
|
<if test="realTwo != null">#{realTwo},</if>
|
|
|
<if test="hsForecastTwo != null">#{hsForecastTwo},</if>
|
|
|
<if test="hsErrorRateTwo != null">#{hsErrorRateTwo},</if>
|
|
|
+ <if test="hsTwoSubtract != null">#{hsTwoSubtract},</if>
|
|
|
<if test="yyForecastTwo != null">#{yyForecastTwo},</if>
|
|
|
<if test="yyErrorRateTwo != null">#{yyErrorRateTwo},</if>
|
|
|
+ <if test="yyTwoSubtract != null">#{yyTwoSubtract},</if>
|
|
|
<if test="forecastTimeThree != null">#{forecastTimeThree},</if>
|
|
|
<if test="realThree != null">#{realThree},</if>
|
|
|
<if test="hsForecastThree != null">#{hsForecastThree},</if>
|
|
|
<if test="hsErrorRateThree != null">#{hsErrorRateThree},</if>
|
|
|
+ <if test="hsThreeSubtract != null">#{hsThreeSubtract},</if>
|
|
|
<if test="yyForecastThree != null">#{yyForecastThree},</if>
|
|
|
<if test="yyErrorRateThree != null">#{yyErrorRateThree},</if>
|
|
|
+ <if test="yyThreeSubtract != null">#{yyThreeSubtract},</if>
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
<if test="revision != null">#{revision},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
@@ -142,20 +163,26 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="realOne != null">real_one = #{realOne},</if>
|
|
|
<if test="hsForecastOne != null">hs_forecast_one = #{hsForecastOne},</if>
|
|
|
<if test="hsErrorRateOne != null">hs_error_rate_one = #{hsErrorRateOne},</if>
|
|
|
+ <if test="hsOneSubtract != null">hs_one_subtract = #{hsOneSubtract},</if>
|
|
|
<if test="yyForecastOne != null">yy_forecast_one = #{yyForecastOne},</if>
|
|
|
<if test="yyErrorRateOne != null">yy_error_rate_one = #{yyErrorRateOne},</if>
|
|
|
+ <if test="yyOneSubtract != null">yy_one_subtract = #{yyOneSubtract},</if>
|
|
|
<if test="forecastTimeTwo != null">forecast_time_two = #{forecastTimeTwo},</if>
|
|
|
<if test="realTwo != null">real_two = #{realTwo},</if>
|
|
|
<if test="hsForecastTwo != null">hs_forecast_two = #{hsForecastTwo},</if>
|
|
|
<if test="hsErrorRateTwo != null">hs_error_rate_two = #{hsErrorRateTwo},</if>
|
|
|
+ <if test="hsTwoSubtract != null">hs_two_subtract = #{hsTwoSubtract},</if>
|
|
|
<if test="yyForecastTwo != null">yy_forecast_two = #{yyForecastTwo},</if>
|
|
|
<if test="yyErrorRateTwo != null">yy_error_rate_two = #{yyErrorRateTwo},</if>
|
|
|
+ <if test="yyTwoSubtract != null">yy_two_subtract = #{yyTwoSubtract},</if>
|
|
|
<if test="forecastTimeThree != null">forecast_time_three = #{forecastTimeThree},</if>
|
|
|
<if test="realThree != null">real_three = #{realThree},</if>
|
|
|
<if test="hsForecastThree != null">hs_forecast_three = #{hsForecastThree},</if>
|
|
|
<if test="hsErrorRateThree != null">hs_error_rate_three = #{hsErrorRateThree},</if>
|
|
|
+ <if test="hsThreeSubtract != null">hs_three_subtract = #{hsThreeSubtract},</if>
|
|
|
<if test="yyForecastThree != null">yy_forecast_three = #{yyForecastThree},</if>
|
|
|
<if test="yyErrorRateThree != null">yy_error_rate_three = #{yyErrorRateThree},</if>
|
|
|
+ <if test="yyThreeSubtract != null">yy_three_subtract = #{yyThreeSubtract},</if>
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
<if test="revision != null">revision = #{revision},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|