|
@@ -15,6 +15,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="yyForecastOne" column="yy_forecast_one" />
|
|
|
<result property="yyErrorRateOne" column="yy_error_rate_one" />
|
|
|
<result property="yyOneSubtract" column="yy_one_subtract" />
|
|
|
+ <result property="jlForecastOne" column="jl_forecast_one" />
|
|
|
+ <result property="jlErrorRateOne" column="jl_error_rate_one" />
|
|
|
+ <result property="jlOneSubtract" column="jl_one_subtract" />
|
|
|
<result property="forecastTimeTwo" column="forecast_time_two" />
|
|
|
<result property="realTwo" column="real_two" />
|
|
|
<result property="hsForecastTwo" column="hs_forecast_two" />
|
|
@@ -23,6 +26,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="yyForecastTwo" column="yy_forecast_two" />
|
|
|
<result property="yyErrorRateTwo" column="yy_error_rate_two" />
|
|
|
<result property="yyTwoSubtract" column="yy_two_subtract" />
|
|
|
+ <result property="jlForecastTwo" column="jl_forecast_two" />
|
|
|
+ <result property="jlErrorRateTwo" column="jl_error_rate_two" />
|
|
|
+ <result property="jlTwoSubtract" column="jl_two_subtract" />
|
|
|
<result property="forecastTimeThree" column="forecast_time_three" />
|
|
|
<result property="realThree" column="real_three" />
|
|
|
<result property="hsForecastThree" column="hs_forecast_three" />
|
|
@@ -31,6 +37,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="yyForecastThree" column="yy_forecast_three" />
|
|
|
<result property="yyErrorRateThree" column="yy_error_rate_three" />
|
|
|
<result property="yyThreeSubtract" column="yy_three_subtract" />
|
|
|
+ <result property="jlForecastThree" column="jl_forecast_three" />
|
|
|
+ <result property="jlErrorRateThree" column="jl_error_rate_three" />
|
|
|
+ <result property="jlThreeSubtract" column="jl_three_subtract" />
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
<result property="revision" column="revision" />
|
|
|
<result property="createBy" column="create_by" />
|
|
@@ -41,11 +50,11 @@ 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, 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
|
|
|
+ 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, jl_forecast_one, jl_error_rate_one, jl_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, jl_forecast_two, jl_error_rate_two, jl_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, jl_forecast_three, jl_error_rate_three, jl_three_subtract, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_xinyi_forecast_comparison
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
<select id="selectTXinyiForecastComparisonById" parameterType="Long" resultMap="TXinyiForecastComparisonResult">
|
|
|
<include refid="selectTXinyiForecastComparisonVo"/>
|
|
|
where id = #{id} and del_flag = 0
|
|
@@ -63,6 +72,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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="jlForecastOne != null">jl_forecast_one,</if>
|
|
|
+ <if test="jlErrorRateOne != null">jl_error_rate_one,</if>
|
|
|
+ <if test="jlOneSubtract != null">jl_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>
|
|
@@ -71,6 +83,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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="jlForecastTwo != null">jl_forecast_two,</if>
|
|
|
+ <if test="jlErrorRateTwo != null">jl_error_rate_two,</if>
|
|
|
+ <if test="jlTwoSubtract != null">jl_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>
|
|
@@ -79,6 +94,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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="jlForecastThree != null">jl_forecast_three,</if>
|
|
|
+ <if test="jlErrorRateThree != null">jl_error_rate_three,</if>
|
|
|
+ <if test="jlThreeSubtract != null">jl_three_subtract,</if>
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
<if test="revision != null">revision,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
@@ -97,6 +115,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="yyForecastOne != null">#{yyForecastOne},</if>
|
|
|
<if test="yyErrorRateOne != null">#{yyErrorRateOne},</if>
|
|
|
<if test="yyOneSubtract != null">#{yyOneSubtract},</if>
|
|
|
+ <if test="jlForecastOne != null">#{jlForecastOne},</if>
|
|
|
+ <if test="jlErrorRateOne != null">#{jlErrorRateOne},</if>
|
|
|
+ <if test="jlOneSubtract != null">#{jlOneSubtract},</if>
|
|
|
<if test="forecastTimeTwo != null">#{forecastTimeTwo},</if>
|
|
|
<if test="realTwo != null">#{realTwo},</if>
|
|
|
<if test="hsForecastTwo != null">#{hsForecastTwo},</if>
|
|
@@ -105,6 +126,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="yyForecastTwo != null">#{yyForecastTwo},</if>
|
|
|
<if test="yyErrorRateTwo != null">#{yyErrorRateTwo},</if>
|
|
|
<if test="yyTwoSubtract != null">#{yyTwoSubtract},</if>
|
|
|
+ <if test="jlForecastTwo != null">#{jlForecastTwo},</if>
|
|
|
+ <if test="jlErrorRateTwo != null">#{jlErrorRateTwo},</if>
|
|
|
+ <if test="jlTwoSubtract != null">#{jlTwoSubtract},</if>
|
|
|
<if test="forecastTimeThree != null">#{forecastTimeThree},</if>
|
|
|
<if test="realThree != null">#{realThree},</if>
|
|
|
<if test="hsForecastThree != null">#{hsForecastThree},</if>
|
|
@@ -113,6 +137,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="yyForecastThree != null">#{yyForecastThree},</if>
|
|
|
<if test="yyErrorRateThree != null">#{yyErrorRateThree},</if>
|
|
|
<if test="yyThreeSubtract != null">#{yyThreeSubtract},</if>
|
|
|
+ <if test="jlForecastThree != null">#{jlForecastThree},</if>
|
|
|
+ <if test="jlErrorRateThree != null">#{jlErrorRateThree},</if>
|
|
|
+ <if test="jlThreeSubtract != null">#{jlThreeSubtract},</if>
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
<if test="revision != null">#{revision},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
@@ -135,6 +162,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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="jlForecastOne != null">jl_forecast_one = #{jlForecastOne},</if>
|
|
|
+ <if test="jlErrorRateOne != null">jl_error_rate_one = #{jlErrorRateOne},</if>
|
|
|
+ <if test="jlOneSubtract != null">jl_one_subtract = #{jlOneSubtract},</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>
|
|
@@ -143,6 +173,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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="jlForecastTwo != null">jl_forecast_two = #{jlForecastTwo},</if>
|
|
|
+ <if test="jlErrorRateTwo != null">jl_error_rate_two = #{jlErrorRateTwo},</if>
|
|
|
+ <if test="jlTwoSubtract != null">jl_two_subtract = #{jlTwoSubtract},</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>
|
|
@@ -151,6 +184,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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="jlForecastThree != null">jl_forecast_three = #{jlForecastThree},</if>
|
|
|
+ <if test="jlErrorRateThree != null">jl_error_rate_three = #{jlErrorRateThree},</if>
|
|
|
+ <if test="jlThreeSubtract != null">jl_three_subtract = #{jlThreeSubtract},</if>
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
<if test="revision != null">revision = #{revision},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
@@ -190,6 +226,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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="jlForecastOne != null "> and jl_forecast_one = #{jlForecastOne}</if>
|
|
|
+ <if test="jlErrorRateOne != null "> and jl_error_rate_one = #{jlErrorRateOne}</if>
|
|
|
+ <if test="jlOneSubtract != null "> and jl_one_subtract = #{jlOneSubtract}</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>
|
|
@@ -198,6 +237,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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="jlForecastTwo != null "> and jl_forecast_two = #{jlForecastTwo}</if>
|
|
|
+ <if test="jlErrorRateTwo != null "> and jl_error_rate_two = #{jlErrorRateTwo}</if>
|
|
|
+ <if test="jlTwoSubtract != null "> and jl_two_subtract = #{jlTwoSubtract}</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>
|
|
@@ -206,6 +248,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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="jlForecastThree != null "> and jl_forecast_three = #{jlForecastThree}</if>
|
|
|
+ <if test="jlErrorRateThree != null "> and jl_error_rate_three = #{jlErrorRateThree}</if>
|
|
|
+ <if test="jlThreeSubtract != null "> and jl_three_subtract = #{jlThreeSubtract}</if>
|
|
|
<if test="revision != null "> and revision = #{revision}</if>
|
|
|
<if test="remark != null "> and remark = #{remark}</if>
|
|
|
<if test="timeBegin != null and timeBegin != ''"> and remark >= #{timeBegin}</if>
|