|
@@ -0,0 +1,81 @@
|
|
|
+<?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.ruoyi.system.mapper.fgw.FgwYjpzMapper">
|
|
|
+
|
|
|
+ <resultMap type="FgwYjpz" id="FgwYjpzResult">
|
|
|
+ <result property="id" column="id" />
|
|
|
+ <result property="yjts" column="yjts" />
|
|
|
+ <result property="yzcqts" column="yzcqts" />
|
|
|
+ <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="selectFgwYjpzVo">
|
|
|
+ select id, yjts, yzcqts, create_by, create_time, update_by, update_time, remark from fgw_yjpz
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectFgwYjpzList" parameterType="FgwYjpz" resultMap="FgwYjpzResult">
|
|
|
+ <include refid="selectFgwYjpzVo"/>
|
|
|
+ <where>
|
|
|
+ <if test="yjts != null "> and yjts = #{yjts}</if>
|
|
|
+ <if test="yzcqts != null "> and yzcqts = #{yzcqts}</if>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectFgwYjpzById" parameterType="Long" resultMap="FgwYjpzResult">
|
|
|
+ <include refid="selectFgwYjpzVo"/>
|
|
|
+ where id = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertFgwYjpz" parameterType="FgwYjpz" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into fgw_yjpz
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="yjts != null">yjts,</if>
|
|
|
+ <if test="yzcqts != null">yzcqts,</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="yjts != null">#{yjts},</if>
|
|
|
+ <if test="yzcqts != null">#{yzcqts},</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="updateFgwYjpz" parameterType="FgwYjpz">
|
|
|
+ update fgw_yjpz
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="yjts != null">yjts = #{yjts},</if>
|
|
|
+ <if test="yzcqts != null">yzcqts = #{yzcqts},</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>
|
|
|
+ where id = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <delete id="deleteFgwYjpzById" parameterType="Long">
|
|
|
+ delete from fgw_yjpz where id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deleteFgwYjpzByIds" parameterType="String">
|
|
|
+ delete from fgw_yjpz where id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+</mapper>
|