|
@@ -22,6 +22,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="operator" column="operator" />
|
|
|
<result property="review" column="review" />
|
|
|
<result property="useRecommend" column="use_recommend" />
|
|
|
+ <result property="waterType" column="water_type" />
|
|
|
+ <result property="symbol" column="symbol" />
|
|
|
+ <result property="cwrwxz" column="cwrwxz" />
|
|
|
+ <result property="cwrwfhz" column="cwrwfhz" />
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
<result property="revision" column="revision" />
|
|
|
<result property="createBy" column="create_by" />
|
|
@@ -32,7 +36,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTXinyiWarningRecordVo">
|
|
|
- select id, type, category, time, reason, warning_val, design_val, control_val, forecast_val, function_way, level, status, is_emergency, off_time, operator, review, use_recommend, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_xinyi_warning_record
|
|
|
+ select id, type, category, time, reason, warning_val, design_val, control_val, forecast_val, function_way, level, status, is_emergency, off_time, operator, review, use_recommend, water_type, symbol, cwrwxz, cwrwfhz, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_xinyi_warning_record
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTXinyiWarningRecordList" parameterType="TXinyiWarningRecord" resultMap="TXinyiWarningRecordResult">
|
|
@@ -55,6 +59,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="operator != null and operator != ''"> and operator = #{operator}</if>
|
|
|
<if test="review != null and review != ''"> and review = #{review}</if>
|
|
|
<if test="useRecommend != null "> and use_recommend = #{useRecommend}</if>
|
|
|
+ <if test="waterType != null "> and water_type = #{waterType}</if>
|
|
|
+ <if test="symbol != null "> and symbol = #{symbol}</if>
|
|
|
+ <if test="cwrwxz != null "> and cwrwxz = #{cwrwxz}</if>
|
|
|
+ <if test="cwrwfhz != null "> and cwrwfhz = #{cwrwfhz}</if>
|
|
|
<if test="revision != null "> and revision = #{revision}</if>
|
|
|
<if test="warningStatus != null ">
|
|
|
<choose>
|
|
@@ -94,6 +102,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="operator != null">operator,</if>
|
|
|
<if test="review != null">review,</if>
|
|
|
<if test="useRecommend != null">use_recommend,</if>
|
|
|
+ <if test="waterType != null">water_type,</if>
|
|
|
+ <if test="symbol != null">symbol,</if>
|
|
|
+ <if test="cwrwxz != null">cwrwxz,</if>
|
|
|
+ <if test="cwrwfhz != null">cwrwfhz,</if>
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
<if test="revision != null">revision,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
@@ -119,6 +131,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="operator != null">#{operator},</if>
|
|
|
<if test="review != null">#{review},</if>
|
|
|
<if test="useRecommend != null">#{useRecommend},</if>
|
|
|
+ <if test="waterType != null">#{waterType},</if>
|
|
|
+ <if test="symbol != null">#{symbol},</if>
|
|
|
+ <if test="cwrwxz != null">#{cwrwxz},</if>
|
|
|
+ <if test="cwrwfhz != null">#{cwrwfhz},</if>
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
<if test="revision != null">#{revision},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
@@ -148,6 +164,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="operator != null">operator = #{operator},</if>
|
|
|
<if test="review != null">review = #{review},</if>
|
|
|
<if test="useRecommend != null">use_recommend = #{useRecommend},</if>
|
|
|
+ <if test="waterType != null">water_type = #{waterType},</if>
|
|
|
+ <if test="symbol != null">symbol = #{symbol},</if>
|
|
|
+ <if test="cwrwxz != null">cwrwxz = #{cwrwxz},</if>
|
|
|
+ <if test="cwrwfhz != null">cwrwfhz = #{cwrwfhz},</if>
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
<if test="revision != null">revision = #{revision},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|