|
@@ -0,0 +1,97 @@
|
|
|
+<?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.qdtl.mapper.TlWorkPicMapper">
|
|
|
+
|
|
|
+ <resultMap type="TlWorkPic" id="TlWorkPicResult">
|
|
|
+ <result property="id" column="id"/>
|
|
|
+ <result property="picName" column="pic_name"/>
|
|
|
+ <result property="picUrl" column="pic_url"/>
|
|
|
+ <result property="sortNo" column="sort_no"/>
|
|
|
+ <result property="status" column="status"/>
|
|
|
+ <result property="createBy" column="create_by"/>
|
|
|
+ <result property="createTime" column="create_time"/>
|
|
|
+ <result property="updateBy" column="update_by"/>
|
|
|
+ <result property="updateTime" column="update_time"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="selectTlWorkPicVo">
|
|
|
+ select id,
|
|
|
+ pic_name,
|
|
|
+ pic_url,
|
|
|
+ status,
|
|
|
+ sort_no,
|
|
|
+ create_by,
|
|
|
+ create_time,
|
|
|
+ update_by,
|
|
|
+ update_time
|
|
|
+ from tl_work_pic
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectTlWorkPicList" parameterType="TlWorkPic" resultMap="TlWorkPicResult">
|
|
|
+ <include refid="selectTlWorkPicVo"/>
|
|
|
+ <where>
|
|
|
+ <if test="picName != null and picName != ''">and pic_name like concat('%', #{picName}, '%')</if>
|
|
|
+ <if test="status != null and status != ''">and status = #{status}</if>
|
|
|
+ </where>
|
|
|
+ order by sort_no asc,create_time desc
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectTlWorkPicById" parameterType="Long" resultMap="TlWorkPicResult">
|
|
|
+ <include refid="selectTlWorkPicVo"/>
|
|
|
+ where id = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertTlWorkPic" parameterType="TlWorkPic" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into tl_work_pic
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="picName != null">pic_name,</if>
|
|
|
+ <if test="picUrl != null">pic_url,</if>
|
|
|
+ <if test="status != null">status,</if>
|
|
|
+ <if test="sortNo != null">sort_no,</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>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="picName != null">#{picName},</if>
|
|
|
+ <if test="picUrl != null">#{picUrl},</if>
|
|
|
+ <if test="status != null">#{status},</if>
|
|
|
+ <if test="sortNo != null">#{sortNo},</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>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <update id="updateTlWorkPic" parameterType="TlWorkPic">
|
|
|
+ update tl_work_pic
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="picName != null">pic_name = #{picName},</if>
|
|
|
+ <if test="picUrl != null">pic_url = #{picUrl},</if>
|
|
|
+ <if test="status != null">status = #{status},</if>
|
|
|
+ <if test="sortNo != null">sort_no = #{sortNo},</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>
|
|
|
+ </trim>
|
|
|
+ where id = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <delete id="deleteTlWorkPicById" parameterType="Long">
|
|
|
+ delete
|
|
|
+ from tl_work_pic
|
|
|
+ where id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deleteTlWorkPicByIds" parameterType="String">
|
|
|
+ delete from tl_work_pic where id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+</mapper>
|