|
@@ -0,0 +1,155 @@
|
|
|
+<?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.slibra.business.mapper.TXinyiWarningRecordMapper">
|
|
|
+
|
|
|
+ <resultMap type="TXinyiWarningRecord" id="TXinyiWarningRecordResult">
|
|
|
+ <result property="id" column="id" />
|
|
|
+ <result property="type" column="type" />
|
|
|
+ <result property="category" column="category" />
|
|
|
+ <result property="time" column="time" />
|
|
|
+ <result property="reason" column="reason" />
|
|
|
+ <result property="warningVal" column="warning_val" />
|
|
|
+ <result property="designVal" column="design_val" />
|
|
|
+ <result property="forecastVal" column="forecast_val" />
|
|
|
+ <result property="level" column="level" />
|
|
|
+ <result property="status" column="status" />
|
|
|
+ <result property="isEmergency" column="is_emergency" />
|
|
|
+ <result property="offTime" column="off_time" />
|
|
|
+ <result property="operator" column="operator" />
|
|
|
+ <result property="review" column="review" />
|
|
|
+ <result property="useRecommend" column="use_recommend" />
|
|
|
+ <result property="delFlag" column="del_flag" />
|
|
|
+ <result property="revision" column="revision" />
|
|
|
+ <result property="createBy" column="create_by" />
|
|
|
+ <result property="createTime" column="create_time" />
|
|
|
+ <result property="updateBy" column="update_by" />
|
|
|
+ <result property="updateTime" column="update_time" />
|
|
|
+ <result property="remark" column="remark" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="selectTXinyiWarningRecordVo">
|
|
|
+ select id, type, category, time, reason, warning_val, design_val, forecast_val, 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
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectTXinyiWarningRecordList" parameterType="TXinyiWarningRecord" resultMap="TXinyiWarningRecordResult">
|
|
|
+ <include refid="selectTXinyiWarningRecordVo"/>
|
|
|
+ <where>
|
|
|
+ 1 = 1
|
|
|
+ <if test="type != null "> and type = #{type}</if>
|
|
|
+ <if test="category != null and category != ''"> and category = #{category}</if>
|
|
|
+ <if test="time != null "> and time = #{time}</if>
|
|
|
+ <if test="reason != null and reason != ''"> and reason = #{reason}</if>
|
|
|
+ <if test="warningVal != null "> and warning_val = #{warningVal}</if>
|
|
|
+ <if test="designVal != null "> and design_val = #{designVal}</if>
|
|
|
+ <if test="forecastVal != null "> and forecast_val = #{forecastVal}</if>
|
|
|
+ <if test="level != null and level != ''"> and level = #{level}</if>
|
|
|
+ <if test="status != null "> and status = #{status}</if>
|
|
|
+ <if test="isEmergency != null and isEmergency != ''"> and is_emergency = #{isEmergency}</if>
|
|
|
+ <if test="offTime != null "> and off_time = #{offTime}</if>
|
|
|
+ <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="revision != null "> and revision = #{revision}</if>
|
|
|
+ </where>
|
|
|
+ and del_flag = 0
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectTXinyiWarningRecordById" parameterType="Long" resultMap="TXinyiWarningRecordResult">
|
|
|
+ <include refid="selectTXinyiWarningRecordVo"/>
|
|
|
+ where id = #{id} and del_flag = 0
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertTXinyiWarningRecord" parameterType="TXinyiWarningRecord" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into t_xinyi_warning_record
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="type != null">type,</if>
|
|
|
+ <if test="category != null">category,</if>
|
|
|
+ <if test="time != null">time,</if>
|
|
|
+ <if test="reason != null">reason,</if>
|
|
|
+ <if test="warningVal != null">warning_val,</if>
|
|
|
+ <if test="designVal != null">design_val,</if>
|
|
|
+ <if test="forecastVal != null">forecast_val,</if>
|
|
|
+ <if test="level != null">level,</if>
|
|
|
+ <if test="status != null">status,</if>
|
|
|
+ <if test="isEmergency != null">is_emergency,</if>
|
|
|
+ <if test="offTime != null">off_time,</if>
|
|
|
+ <if test="operator != null">operator,</if>
|
|
|
+ <if test="review != null">review,</if>
|
|
|
+ <if test="useRecommend != null">use_recommend,</if>
|
|
|
+ <if test="delFlag != null">del_flag,</if>
|
|
|
+ <if test="revision != null">revision,</if>
|
|
|
+ <if test="createBy != null">create_by,</if>
|
|
|
+ <if test="createTime != null">create_time,</if>
|
|
|
+ <if test="updateBy != null">update_by,</if>
|
|
|
+ <if test="updateTime != null">update_time,</if>
|
|
|
+ <if test="remark != null">remark,</if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="type != null">#{type},</if>
|
|
|
+ <if test="category != null">#{category},</if>
|
|
|
+ <if test="time != null">#{time},</if>
|
|
|
+ <if test="reason != null">#{reason},</if>
|
|
|
+ <if test="warningVal != null">#{warningVal},</if>
|
|
|
+ <if test="designVal != null">#{designVal},</if>
|
|
|
+ <if test="forecastVal != null">#{forecastVal},</if>
|
|
|
+ <if test="level != null">#{level},</if>
|
|
|
+ <if test="status != null">#{status},</if>
|
|
|
+ <if test="isEmergency != null">#{isEmergency},</if>
|
|
|
+ <if test="offTime != null">#{offTime},</if>
|
|
|
+ <if test="operator != null">#{operator},</if>
|
|
|
+ <if test="review != null">#{review},</if>
|
|
|
+ <if test="useRecommend != null">#{useRecommend},</if>
|
|
|
+ <if test="delFlag != null">#{delFlag},</if>
|
|
|
+ <if test="revision != null">#{revision},</if>
|
|
|
+ <if test="createBy != null">#{createBy},</if>
|
|
|
+ <if test="createTime != null">#{createTime},</if>
|
|
|
+ <if test="updateBy != null">#{updateBy},</if>
|
|
|
+ <if test="updateTime != null">#{updateTime},</if>
|
|
|
+ <if test="remark != null">#{remark},</if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <update id="updateTXinyiWarningRecord" parameterType="TXinyiWarningRecord">
|
|
|
+ update t_xinyi_warning_record
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="type != null">type = #{type},</if>
|
|
|
+ <if test="category != null">category = #{category},</if>
|
|
|
+ <if test="time != null">time = #{time},</if>
|
|
|
+ <if test="reason != null">reason = #{reason},</if>
|
|
|
+ <if test="warningVal != null">warning_val = #{warningVal},</if>
|
|
|
+ <if test="designVal != null">design_val = #{designVal},</if>
|
|
|
+ <if test="forecastVal != null">forecast_val = #{forecastVal},</if>
|
|
|
+ <if test="level != null">level = #{level},</if>
|
|
|
+ <if test="status != null">status = #{status},</if>
|
|
|
+ <if test="isEmergency != null">is_emergency = #{isEmergency},</if>
|
|
|
+ <if test="offTime != null">off_time = #{offTime},</if>
|
|
|
+ <if test="operator != null">operator = #{operator},</if>
|
|
|
+ <if test="review != null">review = #{review},</if>
|
|
|
+ <if test="useRecommend != null">use_recommend = #{useRecommend},</if>
|
|
|
+ <if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
+ <if test="revision != null">revision = #{revision},</if>
|
|
|
+ <if test="createBy != null">create_by = #{createBy},</if>
|
|
|
+ <if test="createTime != null">create_time = #{createTime},</if>
|
|
|
+ <if test="updateBy != null">update_by = #{updateBy},</if>
|
|
|
+ <if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
+ <if test="remark != null">remark = #{remark},</if>
|
|
|
+ </trim>
|
|
|
+ ,revision = revision + 1
|
|
|
+ where id = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <delete id="deleteTXinyiWarningRecordById" parameterType="Long">
|
|
|
+ update t_xinyi_warning_record set del_flag = 2,revision = revision + 1 where del_flag = 0 and id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deleteTXinyiWarningRecordByIds" parameterType="String">
|
|
|
+ update t_xinyi_warning_record set del_flag = 2,revision = revision + 1 where del_flag = 0 and id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+</mapper>
|