|
|
@@ -0,0 +1,577 @@
|
|
|
+<?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="org.linlinjava.litemall.db.dao.LitemallAftersaleMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="org.linlinjava.litemall.db.domain.LitemallAftersale">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ <id column="id" jdbcType="INTEGER" property="id" />
|
|
|
+ <result column="aftersale_sn" jdbcType="VARCHAR" property="aftersaleSn" />
|
|
|
+ <result column="order_id" jdbcType="INTEGER" property="orderId" />
|
|
|
+ <result column="user_id" jdbcType="INTEGER" property="userId" />
|
|
|
+ <result column="type" jdbcType="SMALLINT" property="type" />
|
|
|
+ <result column="reason" jdbcType="VARCHAR" property="reason" />
|
|
|
+ <result column="amount" jdbcType="DECIMAL" property="amount" />
|
|
|
+ <result column="pictures" jdbcType="VARCHAR" property="pictures" typeHandler="org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler" />
|
|
|
+ <result column="comment" jdbcType="VARCHAR" property="comment" />
|
|
|
+ <result column="status" jdbcType="SMALLINT" property="status" />
|
|
|
+ <result column="handle_time" jdbcType="TIMESTAMP" property="handleTime" />
|
|
|
+ <result column="add_time" jdbcType="TIMESTAMP" property="addTime" />
|
|
|
+ <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
|
|
+ <result column="deleted" jdbcType="BIT" property="deleted" />
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Example_Where_Clause">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ <where>
|
|
|
+ <foreach collection="oredCriteria" item="criteria" separator="or">
|
|
|
+ <if test="criteria.valid">
|
|
|
+ <trim prefix="(" prefixOverrides="and" suffix=")">
|
|
|
+ <foreach collection="criteria.criteria" item="criterion">
|
|
|
+ <choose>
|
|
|
+ <when test="criterion.noValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.singleValue">
|
|
|
+ and ${criterion.condition} #{criterion.value}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.betweenValue">
|
|
|
+ and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.listValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
|
+ #{listItem}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ </choose>
|
|
|
+ </foreach>
|
|
|
+ <foreach collection="criteria.picturesCriteria" item="criterion">
|
|
|
+ <choose>
|
|
|
+ <when test="criterion.noValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.singleValue">
|
|
|
+ and ${criterion.condition} #{criterion.value,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.betweenValue">
|
|
|
+ and ${criterion.condition} #{criterion.value,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler} and #{criterion.secondValue,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.listValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
|
+ #{listItem,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ </choose>
|
|
|
+ </foreach>
|
|
|
+ </trim>
|
|
|
+ </if>
|
|
|
+ </foreach>
|
|
|
+ </where>
|
|
|
+ </sql>
|
|
|
+ <sql id="Update_By_Example_Where_Clause">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ <where>
|
|
|
+ <foreach collection="example.oredCriteria" item="criteria" separator="or">
|
|
|
+ <if test="criteria.valid">
|
|
|
+ <trim prefix="(" prefixOverrides="and" suffix=")">
|
|
|
+ <foreach collection="criteria.criteria" item="criterion">
|
|
|
+ <choose>
|
|
|
+ <when test="criterion.noValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.singleValue">
|
|
|
+ and ${criterion.condition} #{criterion.value}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.betweenValue">
|
|
|
+ and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.listValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
|
+ #{listItem}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ </choose>
|
|
|
+ </foreach>
|
|
|
+ <foreach collection="criteria.picturesCriteria" item="criterion">
|
|
|
+ <choose>
|
|
|
+ <when test="criterion.noValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.singleValue">
|
|
|
+ and ${criterion.condition} #{criterion.value,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.betweenValue">
|
|
|
+ and ${criterion.condition} #{criterion.value,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler} and #{criterion.secondValue,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.listValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
|
+ #{listItem,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ </choose>
|
|
|
+ </foreach>
|
|
|
+ </trim>
|
|
|
+ </if>
|
|
|
+ </foreach>
|
|
|
+ </where>
|
|
|
+ </sql>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ id, aftersale_sn, order_id, user_id, `type`, reason, amount, pictures, `comment`,
|
|
|
+ `status`, handle_time, add_time, update_time, deleted
|
|
|
+ </sql>
|
|
|
+ <select id="selectByExample" parameterType="org.linlinjava.litemall.db.domain.LitemallAftersaleExample" resultMap="BaseResultMap">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <if test="distinct">
|
|
|
+ distinct
|
|
|
+ </if>
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from litemall_aftersale
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ <if test="orderByClause != null">
|
|
|
+ order by ${orderByClause}
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
+ <select id="selectByExampleSelective" parameterType="map" resultMap="BaseResultMap">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <if test="example.distinct">
|
|
|
+ distinct
|
|
|
+ </if>
|
|
|
+ <choose>
|
|
|
+ <when test="selective != null and selective.length > 0">
|
|
|
+ <foreach collection="selective" item="column" separator=",">
|
|
|
+ ${column.aliasedEscapedColumnName}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+ from litemall_aftersale
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Update_By_Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ <if test="example.orderByClause != null">
|
|
|
+ order by ${example.orderByClause}
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
+ <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from litemall_aftersale
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </select>
|
|
|
+ <select id="selectByPrimaryKeyWithLogicalDelete" parameterType="map" resultMap="BaseResultMap">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from litemall_aftersale
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ and deleted =
|
|
|
+ <choose>
|
|
|
+ <when test="andLogicalDeleted">
|
|
|
+ 1
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ 0
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+ </select>
|
|
|
+ <select id="selectByPrimaryKeySelective" parameterType="map" resultMap="BaseResultMap">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <choose>
|
|
|
+ <when test="selective != null and selective.length > 0">
|
|
|
+ <foreach collection="selective" item="column" separator=",">
|
|
|
+ ${column.aliasedEscapedColumnName}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+ from litemall_aftersale
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </select>
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ delete from litemall_aftersale
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </delete>
|
|
|
+ <delete id="deleteByExample" parameterType="org.linlinjava.litemall.db.domain.LitemallAftersaleExample">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ delete from litemall_aftersale
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </delete>
|
|
|
+ <insert id="insert" parameterType="org.linlinjava.litemall.db.domain.LitemallAftersale">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ <selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer">
|
|
|
+ SELECT LAST_INSERT_ID()
|
|
|
+ </selectKey>
|
|
|
+ insert into litemall_aftersale (aftersale_sn, order_id, user_id,
|
|
|
+ `type`, reason, amount,
|
|
|
+ pictures,
|
|
|
+ `comment`, `status`, handle_time,
|
|
|
+ add_time, update_time, deleted
|
|
|
+ )
|
|
|
+ values (#{aftersaleSn,jdbcType=VARCHAR}, #{orderId,jdbcType=INTEGER}, #{userId,jdbcType=INTEGER},
|
|
|
+ #{type,jdbcType=SMALLINT}, #{reason,jdbcType=VARCHAR}, #{amount,jdbcType=DECIMAL},
|
|
|
+ #{pictures,jdbcType=VARCHAR,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler},
|
|
|
+ #{comment,jdbcType=VARCHAR}, #{status,jdbcType=SMALLINT}, #{handleTime,jdbcType=TIMESTAMP},
|
|
|
+ #{addTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{deleted,jdbcType=BIT}
|
|
|
+ )
|
|
|
+ </insert>
|
|
|
+ <insert id="insertSelective" parameterType="org.linlinjava.litemall.db.domain.LitemallAftersale">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ <selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer">
|
|
|
+ SELECT LAST_INSERT_ID()
|
|
|
+ </selectKey>
|
|
|
+ insert into litemall_aftersale
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="aftersaleSn != null">
|
|
|
+ aftersale_sn,
|
|
|
+ </if>
|
|
|
+ <if test="orderId != null">
|
|
|
+ order_id,
|
|
|
+ </if>
|
|
|
+ <if test="userId != null">
|
|
|
+ user_id,
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ `type`,
|
|
|
+ </if>
|
|
|
+ <if test="reason != null">
|
|
|
+ reason,
|
|
|
+ </if>
|
|
|
+ <if test="amount != null">
|
|
|
+ amount,
|
|
|
+ </if>
|
|
|
+ <if test="pictures != null">
|
|
|
+ pictures,
|
|
|
+ </if>
|
|
|
+ <if test="comment != null">
|
|
|
+ `comment`,
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ `status`,
|
|
|
+ </if>
|
|
|
+ <if test="handleTime != null">
|
|
|
+ handle_time,
|
|
|
+ </if>
|
|
|
+ <if test="addTime != null">
|
|
|
+ add_time,
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ update_time,
|
|
|
+ </if>
|
|
|
+ <if test="deleted != null">
|
|
|
+ deleted,
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="aftersaleSn != null">
|
|
|
+ #{aftersaleSn,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="orderId != null">
|
|
|
+ #{orderId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="userId != null">
|
|
|
+ #{userId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ #{type,jdbcType=SMALLINT},
|
|
|
+ </if>
|
|
|
+ <if test="reason != null">
|
|
|
+ #{reason,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="amount != null">
|
|
|
+ #{amount,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="pictures != null">
|
|
|
+ #{pictures,jdbcType=VARCHAR,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler},
|
|
|
+ </if>
|
|
|
+ <if test="comment != null">
|
|
|
+ #{comment,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ #{status,jdbcType=SMALLINT},
|
|
|
+ </if>
|
|
|
+ <if test="handleTime != null">
|
|
|
+ #{handleTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="addTime != null">
|
|
|
+ #{addTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="deleted != null">
|
|
|
+ #{deleted,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+ <select id="countByExample" parameterType="org.linlinjava.litemall.db.domain.LitemallAftersaleExample" resultType="java.lang.Long">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select count(*) from litemall_aftersale
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
+ <update id="updateByExampleSelective" parameterType="map">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ update litemall_aftersale
|
|
|
+ <set>
|
|
|
+ <if test="record.id != null">
|
|
|
+ id = #{record.id,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="record.aftersaleSn != null">
|
|
|
+ aftersale_sn = #{record.aftersaleSn,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.orderId != null">
|
|
|
+ order_id = #{record.orderId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="record.userId != null">
|
|
|
+ user_id = #{record.userId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="record.type != null">
|
|
|
+ `type` = #{record.type,jdbcType=SMALLINT},
|
|
|
+ </if>
|
|
|
+ <if test="record.reason != null">
|
|
|
+ reason = #{record.reason,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.amount != null">
|
|
|
+ amount = #{record.amount,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="record.pictures != null">
|
|
|
+ pictures = #{record.pictures,jdbcType=VARCHAR,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler},
|
|
|
+ </if>
|
|
|
+ <if test="record.comment != null">
|
|
|
+ `comment` = #{record.comment,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.status != null">
|
|
|
+ `status` = #{record.status,jdbcType=SMALLINT},
|
|
|
+ </if>
|
|
|
+ <if test="record.handleTime != null">
|
|
|
+ handle_time = #{record.handleTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="record.addTime != null">
|
|
|
+ add_time = #{record.addTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="record.updateTime != null">
|
|
|
+ update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="record.deleted != null">
|
|
|
+ deleted = #{record.deleted,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Update_By_Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </update>
|
|
|
+ <update id="updateByExample" parameterType="map">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ update litemall_aftersale
|
|
|
+ set id = #{record.id,jdbcType=INTEGER},
|
|
|
+ aftersale_sn = #{record.aftersaleSn,jdbcType=VARCHAR},
|
|
|
+ order_id = #{record.orderId,jdbcType=INTEGER},
|
|
|
+ user_id = #{record.userId,jdbcType=INTEGER},
|
|
|
+ `type` = #{record.type,jdbcType=SMALLINT},
|
|
|
+ reason = #{record.reason,jdbcType=VARCHAR},
|
|
|
+ amount = #{record.amount,jdbcType=DECIMAL},
|
|
|
+ pictures = #{record.pictures,jdbcType=VARCHAR,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler},
|
|
|
+ `comment` = #{record.comment,jdbcType=VARCHAR},
|
|
|
+ `status` = #{record.status,jdbcType=SMALLINT},
|
|
|
+ handle_time = #{record.handleTime,jdbcType=TIMESTAMP},
|
|
|
+ add_time = #{record.addTime,jdbcType=TIMESTAMP},
|
|
|
+ update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
|
|
+ deleted = #{record.deleted,jdbcType=BIT}
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Update_By_Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </update>
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="org.linlinjava.litemall.db.domain.LitemallAftersale">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ update litemall_aftersale
|
|
|
+ <set>
|
|
|
+ <if test="aftersaleSn != null">
|
|
|
+ aftersale_sn = #{aftersaleSn,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="orderId != null">
|
|
|
+ order_id = #{orderId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="userId != null">
|
|
|
+ user_id = #{userId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ `type` = #{type,jdbcType=SMALLINT},
|
|
|
+ </if>
|
|
|
+ <if test="reason != null">
|
|
|
+ reason = #{reason,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="amount != null">
|
|
|
+ amount = #{amount,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="pictures != null">
|
|
|
+ pictures = #{pictures,jdbcType=VARCHAR,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler},
|
|
|
+ </if>
|
|
|
+ <if test="comment != null">
|
|
|
+ `comment` = #{comment,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ `status` = #{status,jdbcType=SMALLINT},
|
|
|
+ </if>
|
|
|
+ <if test="handleTime != null">
|
|
|
+ handle_time = #{handleTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="addTime != null">
|
|
|
+ add_time = #{addTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="deleted != null">
|
|
|
+ deleted = #{deleted,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </update>
|
|
|
+ <update id="updateByPrimaryKey" parameterType="org.linlinjava.litemall.db.domain.LitemallAftersale">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ update litemall_aftersale
|
|
|
+ set aftersale_sn = #{aftersaleSn,jdbcType=VARCHAR},
|
|
|
+ order_id = #{orderId,jdbcType=INTEGER},
|
|
|
+ user_id = #{userId,jdbcType=INTEGER},
|
|
|
+ `type` = #{type,jdbcType=SMALLINT},
|
|
|
+ reason = #{reason,jdbcType=VARCHAR},
|
|
|
+ amount = #{amount,jdbcType=DECIMAL},
|
|
|
+ pictures = #{pictures,jdbcType=VARCHAR,typeHandler=org.linlinjava.litemall.db.mybatis.JsonStringArrayTypeHandler},
|
|
|
+ `comment` = #{comment,jdbcType=VARCHAR},
|
|
|
+ `status` = #{status,jdbcType=SMALLINT},
|
|
|
+ handle_time = #{handleTime,jdbcType=TIMESTAMP},
|
|
|
+ add_time = #{addTime,jdbcType=TIMESTAMP},
|
|
|
+ update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ deleted = #{deleted,jdbcType=BIT}
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </update>
|
|
|
+ <select id="selectOneByExample" parameterType="org.linlinjava.litemall.db.domain.LitemallAftersaleExample" resultMap="BaseResultMap">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from litemall_aftersale
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ <if test="orderByClause != null">
|
|
|
+ order by ${orderByClause}
|
|
|
+ </if>
|
|
|
+ limit 1
|
|
|
+ </select>
|
|
|
+ <select id="selectOneByExampleSelective" parameterType="map" resultMap="BaseResultMap">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <choose>
|
|
|
+ <when test="selective != null and selective.length > 0">
|
|
|
+ <foreach collection="selective" item="column" separator=",">
|
|
|
+ ${column.aliasedEscapedColumnName}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+ from litemall_aftersale
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Update_By_Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ <if test="example.orderByClause != null">
|
|
|
+ order by ${example.orderByClause}
|
|
|
+ </if>
|
|
|
+ limit 1
|
|
|
+ </select>
|
|
|
+ <update id="logicalDeleteByExample" parameterType="map">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ update litemall_aftersale set deleted = 1
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Update_By_Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </update>
|
|
|
+ <update id="logicalDeleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ update litemall_aftersale set deleted = 1
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </update>
|
|
|
+</mapper>
|