|
@@ -0,0 +1,100 @@
|
|
|
+<?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.TCutOffWaterExtraMapper">
|
|
|
+
|
|
|
+ <resultMap type="TCutOffWaterExtra" id="TCutOffWaterExtraResult">
|
|
|
+ <result property="id" column="id" />
|
|
|
+ <result property="cutOffWaterId" column="cut_off_water_id" />
|
|
|
+ <result property="neighborhoodId" column="neighborhood_id" />
|
|
|
+ <result property="pumpingStationId" column="pumping_station_id" />
|
|
|
+ <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="selectTCutOffWaterExtraVo">
|
|
|
+ select id, cut_off_water_id, neighborhood_id, pumping_station_id, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_cut_off_water_extra
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectTCutOffWaterExtraList" parameterType="TCutOffWaterExtra" resultMap="TCutOffWaterExtraResult">
|
|
|
+ <include refid="selectTCutOffWaterExtraVo"/>
|
|
|
+ <where>
|
|
|
+ 1 = 1
|
|
|
+ <if test="cutOffWaterId != null and cutOffWaterId != ''"> and cut_off_water_id = #{cutOffWaterId}</if>
|
|
|
+ <if test="neighborhoodId != null and neighborhoodId != ''"> and neighborhood_id = #{neighborhoodId}</if>
|
|
|
+ <if test="pumpingStationId != null and pumpingStationId != ''"> and pumping_station_id = #{pumpingStationId}</if>
|
|
|
+ <if test="revision != null "> and revision = #{revision}</if>
|
|
|
+ </where>
|
|
|
+ and del_flag = 0 order by id desc
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectTCutOffWaterExtraById" parameterType="Long" resultMap="TCutOffWaterExtraResult">
|
|
|
+ <include refid="selectTCutOffWaterExtraVo"/>
|
|
|
+ where id = #{id} and del_flag = 0
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertTCutOffWaterExtra" parameterType="TCutOffWaterExtra" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into t_cut_off_water_extra
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="cutOffWaterId != null">cut_off_water_id,</if>
|
|
|
+ <if test="neighborhoodId != null">neighborhood_id,</if>
|
|
|
+ <if test="pumpingStationId != null">pumping_station_id,</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="cutOffWaterId != null">#{cutOffWaterId},</if>
|
|
|
+ <if test="neighborhoodId != null">#{neighborhoodId},</if>
|
|
|
+ <if test="pumpingStationId != null">#{pumpingStationId},</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="updateTCutOffWaterExtra" parameterType="TCutOffWaterExtra">
|
|
|
+ update t_cut_off_water_extra
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="cutOffWaterId != null">cut_off_water_id = #{cutOffWaterId},</if>
|
|
|
+ <if test="neighborhoodId != null">neighborhood_id = #{neighborhoodId},</if>
|
|
|
+ <if test="pumpingStationId != null">pumping_station_id = #{pumpingStationId},</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="deleteTCutOffWaterExtraById" parameterType="Long">
|
|
|
+ update t_cut_off_water_extra set del_flag = 2,revision = revision + 1 where del_flag = 0 and id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deleteTCutOffWaterExtraByIds" parameterType="String">
|
|
|
+ update t_cut_off_water_extra 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>
|