|
@@ -0,0 +1,106 @@
|
|
|
+<?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.projectV2.ZsyzJzqkTsMapper">
|
|
|
+
|
|
|
+ <resultMap type="ZsyzJzqkTs" id="ZsyzJzqkTsResult">
|
|
|
+ <result property="id" column="id" />
|
|
|
+ <result property="xmId" column="xm_id" />
|
|
|
+ <result property="xmbh" column="xmbh" />
|
|
|
+ <result property="xmmc" column="xmmc" />
|
|
|
+ <result property="deptId" column="dept_id" />
|
|
|
+ <result property="deptName" column="dept_name" />
|
|
|
+ <result property="details" column="details" />
|
|
|
+ <result property="isDel" column="is_del" />
|
|
|
+ <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="selectZsyzJzqkTsVo">
|
|
|
+ select id, xm_id, xmbh, xmmc, dept_id, dept_name, details, create_by, create_time, update_by, update_time, remark from zsyz_jzqk_ts
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectZsyzJzqkTsList" parameterType="ZsyzJzqkTs" resultMap="ZsyzJzqkTsResult">
|
|
|
+ <include refid="selectZsyzJzqkTsVo"/>
|
|
|
+ <where>
|
|
|
+ <if test="xmId != null "> and xm_id = #{xmId}</if>
|
|
|
+ <if test="xmbh != null and xmbh != ''"> and xmbh = #{xmbh}</if>
|
|
|
+ <if test="xmmc != null and xmmc != ''"> and xmmc = #{xmmc}</if>
|
|
|
+ <if test="deptId != null "> and dept_id = #{deptId}</if>
|
|
|
+ <if test="deptName != null and deptName != ''"> and dept_name like concat('%', #{deptName}, '%')</if>
|
|
|
+ <if test="details != null and details != ''"> and details = #{details}</if>
|
|
|
+ <if test="isDel != null and isDel != ''"> and is_del = #{isDel}</if>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectZsyzJzqkTsById" parameterType="Long" resultMap="ZsyzJzqkTsResult">
|
|
|
+ <include refid="selectZsyzJzqkTsVo"/>
|
|
|
+ where id = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertZsyzJzqkTs" parameterType="ZsyzJzqkTs" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into zsyz_jzqk_ts
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="xmId != null">xm_id,</if>
|
|
|
+ <if test="xmbh != null">xmbh,</if>
|
|
|
+ <if test="xmmc != null and xmmc != ''">xmmc,</if>
|
|
|
+ <if test="deptId != null">dept_id,</if>
|
|
|
+ <if test="deptName != null and deptName != ''">dept_name,</if>
|
|
|
+ <if test="details != null">details,</if>
|
|
|
+ <if test="isDel != null">is_del,</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="xmId != null">#{xmId},</if>
|
|
|
+ <if test="xmbh != null">#{xmbh},</if>
|
|
|
+ <if test="xmmc != null and xmmc != ''">#{xmmc},</if>
|
|
|
+ <if test="deptId != null">#{deptId},</if>
|
|
|
+ <if test="deptName != null and deptName != ''">#{deptName},</if>
|
|
|
+ <if test="details != null">#{details},</if>
|
|
|
+ <if test="isDel != null">#{isDel},</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="updateZsyzJzqkTs" parameterType="ZsyzJzqkTs">
|
|
|
+ update zsyz_jzqk_ts
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="xmId != null">xm_id = #{xmId},</if>
|
|
|
+ <if test="xmbh != null">xmbh = #{xmbh},</if>
|
|
|
+ <if test="xmmc != null and xmmc != ''">xmmc = #{xmmc},</if>
|
|
|
+ <if test="deptId != null">dept_id = #{deptId},</if>
|
|
|
+ <if test="deptName != null and deptName != ''">dept_name = #{deptName},</if>
|
|
|
+ <if test="details != null">details = #{details},</if>
|
|
|
+ <if test="isDel != null">is_del = #{isDel},</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="deleteZsyzJzqkTsById" parameterType="Long">
|
|
|
+ delete from zsyz_jzqk_ts where id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deleteZsyzJzqkTsByIds" parameterType="String">
|
|
|
+ delete from zsyz_jzqk_ts where id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+</mapper>
|