|
|
- <?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.model.mapper.AppletServiceDateMapper">
-
- <resultMap type="AppletServiceDate" id="AppletServiceDateResult">
- <result property="id" column="id" />
- <result property="date" column="date" />
- <result property="details" column="details" />
- <result property="orderId" column="order_id" />
- <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" />
- </resultMap>
-
- <sql id="selectAppletServiceDateVo">
- select id, date, details, order_id, del_flag, create_by, create_time, update_by, update_time from applet_service_date
- </sql>
-
- <select id="selectAppletServiceDateList" parameterType="AppletServiceDate" resultMap="AppletServiceDateResult">
- <include refid="selectAppletServiceDateVo"/>
- <where>
- <if test="date != null "> and date = #{date}</if>
- <if test="details != null and details != ''"> and details = #{details}</if>
- <if test="orderId != null "> and order_id = #{orderId}</if>
- </where>
- </select>
-
- <select id="selectAppletServiceDateById" parameterType="Long" resultMap="AppletServiceDateResult">
- <include refid="selectAppletServiceDateVo"/>
- where id = #{id}
- </select>
-
- <insert id="insertAppletServiceDate" parameterType="AppletServiceDate" useGeneratedKeys="true" keyProperty="id">
- insert into applet_service_date
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="date != null">date,</if>
- <if test="details != null and details != ''">details,</if>
- <if test="orderId != null">order_id,</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>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="date != null">#{date},</if>
- <if test="details != null and details != ''">#{details},</if>
- <if test="orderId != null">#{orderId},</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>
- </trim>
- </insert>
-
- <update id="updateAppletServiceDate" parameterType="AppletServiceDate">
- update applet_service_date
- <trim prefix="SET" suffixOverrides=",">
- <if test="date != null">date = #{date},</if>
- <if test="details != null and details != ''">details = #{details},</if>
- <if test="orderId != null">order_id = #{orderId},</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>
- </trim>
- where id = #{id}
- </update>
-
- <delete id="deleteAppletServiceDateById" parameterType="Long">
- delete from applet_service_date where id = #{id}
- </delete>
-
- <delete id="deleteAppletServiceDateByIds" parameterType="String">
- delete from applet_service_date where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
- </mapper>
|