|
@@ -41,7 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<select id="selectTXinyiForecastComparisonList" parameterType="TXinyiForecastComparison" resultMap="TXinyiForecastComparisonResult">
|
|
|
<include refid="selectTXinyiForecastComparisonVo"/>
|
|
|
<where>
|
|
|
- 1 = 1
|
|
|
+ 1 = 1 and category != 'xsy1' and category != 'xsy2'
|
|
|
<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>
|
|
@@ -62,6 +62,8 @@ 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="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>
|
|
|
</where>
|
|
|
and del_flag = 0 order by id desc
|
|
|
</select>
|