|
@@ -0,0 +1,118 @@
|
|
|
|
+<?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.sooka.system.mapper.TUPeoplemarryinfodoubleMapper">
|
|
|
|
+
|
|
|
|
+ <resultMap type="TUPeoplemarryinfodouble" id="TUPeoplemarryinfodoubleResult">
|
|
|
|
+ <result property="id" column="id" />
|
|
|
|
+ <result property="status" column="status" />
|
|
|
|
+ <result property="remark" column="remark" />
|
|
|
|
+ <result property="delFlag" column="del_flag" />
|
|
|
|
+ <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="certnumberman" column="certnumberman" />
|
|
|
|
+ <result property="certnumberwoman" column="certnumberwoman" />
|
|
|
|
+ <result property="namewoman" column="namewoman" />
|
|
|
|
+ <result property="nameman" column="nameman" />
|
|
|
|
+ <result property="code" column="code" />
|
|
|
|
+ <result property="message" column="message" />
|
|
|
|
+ <result property="result" column="result" />
|
|
|
|
+ </resultMap>
|
|
|
|
+
|
|
|
|
+ <sql id="selectTUPeoplemarryinfodoubleVo">
|
|
|
|
+ select id, status, remark, del_flag, create_by, create_time, update_by, update_time, certnumberman, certnumberwoman, namewoman, nameman, code, message, result from t_u_peoplemarryinfodouble
|
|
|
|
+ </sql>
|
|
|
|
+
|
|
|
|
+ <select id="selectTUPeoplemarryinfodoubleList" parameterType="TUPeoplemarryinfodouble" resultMap="TUPeoplemarryinfodoubleResult">
|
|
|
|
+ <include refid="selectTUPeoplemarryinfodoubleVo"/>
|
|
|
|
+ <where>
|
|
|
|
+ <if test="status != null and status != ''"> and status = #{status}</if>
|
|
|
|
+ <if test="certnumberman != null and certnumberman != ''"> and certnumberman = #{certnumberman}</if>
|
|
|
|
+ <if test="certnumberwoman != null and certnumberwoman != ''"> and certnumberwoman = #{certnumberwoman}</if>
|
|
|
|
+ <if test="namewoman != null and namewoman != ''"> and namewoman = #{namewoman}</if>
|
|
|
|
+ <if test="nameman != null and nameman != ''"> and nameman = #{nameman}</if>
|
|
|
|
+ <if test="code != null and code != ''"> and code = #{code}</if>
|
|
|
|
+ <if test="message != null and message != ''"> and message = #{message}</if>
|
|
|
|
+ <if test="result != null and result != ''"> and result = #{result}</if>
|
|
|
|
+ </where>
|
|
|
|
+ </select>
|
|
|
|
+
|
|
|
|
+ <select id="selectTUPeoplemarryinfodoubleById" parameterType="String" resultMap="TUPeoplemarryinfodoubleResult">
|
|
|
|
+ <include refid="selectTUPeoplemarryinfodoubleVo"/>
|
|
|
|
+ where id = #{id}
|
|
|
|
+ </select>
|
|
|
|
+
|
|
|
|
+ <insert id="insertTUPeoplemarryinfodouble" parameterType="TUPeoplemarryinfodouble">
|
|
|
|
+ insert into t_u_peoplemarryinfodouble
|
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
+ <if test="id != null">id,</if>
|
|
|
|
+ <if test="status != null">status,</if>
|
|
|
|
+ <if test="remark != null">remark,</if>
|
|
|
|
+ <if test="delFlag != null">del_flag,</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="certnumberman != null">certnumberman,</if>
|
|
|
|
+ <if test="certnumberwoman != null">certnumberwoman,</if>
|
|
|
|
+ <if test="namewoman != null">namewoman,</if>
|
|
|
|
+ <if test="nameman != null">nameman,</if>
|
|
|
|
+ <if test="code != null">code,</if>
|
|
|
|
+ <if test="message != null">message,</if>
|
|
|
|
+ <if test="result != null">result,</if>
|
|
|
|
+ </trim>
|
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
+ <if test="id != null">#{id},</if>
|
|
|
|
+ <if test="status != null">#{status},</if>
|
|
|
|
+ <if test="remark != null">#{remark},</if>
|
|
|
|
+ <if test="delFlag != null">#{delFlag},</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="certnumberman != null">#{certnumberman},</if>
|
|
|
|
+ <if test="certnumberwoman != null">#{certnumberwoman},</if>
|
|
|
|
+ <if test="namewoman != null">#{namewoman},</if>
|
|
|
|
+ <if test="nameman != null">#{nameman},</if>
|
|
|
|
+ <if test="code != null">#{code},</if>
|
|
|
|
+ <if test="message != null">#{message},</if>
|
|
|
|
+ <if test="result != null">#{result},</if>
|
|
|
|
+ </trim>
|
|
|
|
+ </insert>
|
|
|
|
+
|
|
|
|
+ <update id="updateTUPeoplemarryinfodouble" parameterType="TUPeoplemarryinfodouble">
|
|
|
|
+ update t_u_peoplemarryinfodouble
|
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
|
+ <if test="status != null">status = #{status},</if>
|
|
|
|
+ <if test="remark != null">remark = #{remark},</if>
|
|
|
|
+ <if test="delFlag != null">del_flag = #{delFlag},</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="certnumberman != null">certnumberman = #{certnumberman},</if>
|
|
|
|
+ <if test="certnumberwoman != null">certnumberwoman = #{certnumberwoman},</if>
|
|
|
|
+ <if test="namewoman != null">namewoman = #{namewoman},</if>
|
|
|
|
+ <if test="nameman != null">nameman = #{nameman},</if>
|
|
|
|
+ <if test="code != null">code = #{code},</if>
|
|
|
|
+ <if test="message != null">message = #{message},</if>
|
|
|
|
+ <if test="result != null">result = #{result},</if>
|
|
|
|
+ </trim>
|
|
|
|
+ where id = #{id}
|
|
|
|
+ </update>
|
|
|
|
+
|
|
|
|
+ <delete id="deleteTUPeoplemarryinfodoubleById" parameterType="String">
|
|
|
|
+ delete from t_u_peoplemarryinfodouble where id = #{id}
|
|
|
|
+ </delete>
|
|
|
|
+
|
|
|
|
+ <delete id="deleteTUPeoplemarryinfodoubleByIds" parameterType="String">
|
|
|
|
+ delete from t_u_peoplemarryinfodouble where id in
|
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
|
+ #{id}
|
|
|
|
+ </foreach>
|
|
|
|
+ </delete>
|
|
|
|
+
|
|
|
|
+</mapper>
|