|
|
@@ -0,0 +1,504 @@
|
|
|
+<?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.LitemallLogMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="org.linlinjava.litemall.db.domain.LitemallLog">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ <id column="id" jdbcType="INTEGER" property="id" />
|
|
|
+ <result column="admin" jdbcType="VARCHAR" property="admin" />
|
|
|
+ <result column="ip" jdbcType="VARCHAR" property="ip" />
|
|
|
+ <result column="type" jdbcType="INTEGER" property="type" />
|
|
|
+ <result column="action" jdbcType="VARCHAR" property="action" />
|
|
|
+ <result column="status" jdbcType="BIT" property="status" />
|
|
|
+ <result column="result" jdbcType="VARCHAR" property="result" />
|
|
|
+ <result column="comment" jdbcType="VARCHAR" property="comment" />
|
|
|
+ <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>
|
|
|
+ </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>
|
|
|
+ </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, `admin`, ip, `type`, `action`, `status`, `result`, `comment`, add_time, update_time,
|
|
|
+ deleted
|
|
|
+ </sql>
|
|
|
+ <select id="selectByExample" parameterType="org.linlinjava.litemall.db.domain.LitemallLogExample" 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_log
|
|
|
+ <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.
|
|
|
+ @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <if test="example.distinct">
|
|
|
+ distinct
|
|
|
+ </if>
|
|
|
+ <choose>
|
|
|
+ <when test="selective != null and selective.length > 0">
|
|
|
+ <foreach collection="selective" item="column" separator=",">
|
|
|
+ ${column.escapedColumnName}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ id, `admin`, ip, `type`, `action`, `status`, `result`, `comment`, add_time, update_time,
|
|
|
+ deleted
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+ from litemall_log
|
|
|
+ <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_log
|
|
|
+ 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.
|
|
|
+ @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ -->
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from litemall_log
|
|
|
+ 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.
|
|
|
+ @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <choose>
|
|
|
+ <when test="selective != null and selective.length > 0">
|
|
|
+ <foreach collection="selective" item="column" separator=",">
|
|
|
+ ${column.escapedColumnName}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ id, `admin`, ip, `type`, `action`, `status`, `result`, `comment`, add_time, update_time,
|
|
|
+ deleted
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+ from litemall_log
|
|
|
+ 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_log
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </delete>
|
|
|
+ <delete id="deleteByExample" parameterType="org.linlinjava.litemall.db.domain.LitemallLogExample">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ delete from litemall_log
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </delete>
|
|
|
+ <insert id="insert" parameterType="org.linlinjava.litemall.db.domain.LitemallLog">
|
|
|
+ <!--
|
|
|
+ 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_log (`admin`, ip, `type`,
|
|
|
+ `action`, `status`, `result`,
|
|
|
+ `comment`, add_time, update_time,
|
|
|
+ deleted)
|
|
|
+ values (#{admin,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR}, #{type,jdbcType=INTEGER},
|
|
|
+ #{action,jdbcType=VARCHAR}, #{status,jdbcType=BIT}, #{result,jdbcType=VARCHAR},
|
|
|
+ #{comment,jdbcType=VARCHAR}, #{addTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ #{deleted,jdbcType=BIT})
|
|
|
+ </insert>
|
|
|
+ <insert id="insertSelective" parameterType="org.linlinjava.litemall.db.domain.LitemallLog">
|
|
|
+ <!--
|
|
|
+ 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_log
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="admin != null">
|
|
|
+ `admin`,
|
|
|
+ </if>
|
|
|
+ <if test="ip != null">
|
|
|
+ ip,
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ `type`,
|
|
|
+ </if>
|
|
|
+ <if test="action != null">
|
|
|
+ `action`,
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ `status`,
|
|
|
+ </if>
|
|
|
+ <if test="result != null">
|
|
|
+ `result`,
|
|
|
+ </if>
|
|
|
+ <if test="comment != null">
|
|
|
+ `comment`,
|
|
|
+ </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="admin != null">
|
|
|
+ #{admin,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="ip != null">
|
|
|
+ #{ip,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ #{type,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="action != null">
|
|
|
+ #{action,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ #{status,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="result != null">
|
|
|
+ #{result,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="comment != null">
|
|
|
+ #{comment,jdbcType=VARCHAR},
|
|
|
+ </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.LitemallLogExample" resultType="java.lang.Long">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ select count(*) from litemall_log
|
|
|
+ <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_log
|
|
|
+ <set>
|
|
|
+ <if test="record.id != null">
|
|
|
+ id = #{record.id,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="record.admin != null">
|
|
|
+ `admin` = #{record.admin,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.ip != null">
|
|
|
+ ip = #{record.ip,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.type != null">
|
|
|
+ `type` = #{record.type,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="record.action != null">
|
|
|
+ `action` = #{record.action,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.status != null">
|
|
|
+ `status` = #{record.status,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="record.result != null">
|
|
|
+ `result` = #{record.result,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.comment != null">
|
|
|
+ `comment` = #{record.comment,jdbcType=VARCHAR},
|
|
|
+ </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_log
|
|
|
+ set id = #{record.id,jdbcType=INTEGER},
|
|
|
+ `admin` = #{record.admin,jdbcType=VARCHAR},
|
|
|
+ ip = #{record.ip,jdbcType=VARCHAR},
|
|
|
+ `type` = #{record.type,jdbcType=INTEGER},
|
|
|
+ `action` = #{record.action,jdbcType=VARCHAR},
|
|
|
+ `status` = #{record.status,jdbcType=BIT},
|
|
|
+ `result` = #{record.result,jdbcType=VARCHAR},
|
|
|
+ `comment` = #{record.comment,jdbcType=VARCHAR},
|
|
|
+ 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.LitemallLog">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ update litemall_log
|
|
|
+ <set>
|
|
|
+ <if test="admin != null">
|
|
|
+ `admin` = #{admin,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="ip != null">
|
|
|
+ ip = #{ip,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ `type` = #{type,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="action != null">
|
|
|
+ `action` = #{action,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ `status` = #{status,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="result != null">
|
|
|
+ `result` = #{result,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="comment != null">
|
|
|
+ `comment` = #{comment,jdbcType=VARCHAR},
|
|
|
+ </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.LitemallLog">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ -->
|
|
|
+ update litemall_log
|
|
|
+ set `admin` = #{admin,jdbcType=VARCHAR},
|
|
|
+ ip = #{ip,jdbcType=VARCHAR},
|
|
|
+ `type` = #{type,jdbcType=INTEGER},
|
|
|
+ `action` = #{action,jdbcType=VARCHAR},
|
|
|
+ `status` = #{status,jdbcType=BIT},
|
|
|
+ `result` = #{result,jdbcType=VARCHAR},
|
|
|
+ `comment` = #{comment,jdbcType=VARCHAR},
|
|
|
+ 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.LitemallLogExample" resultMap="BaseResultMap">
|
|
|
+ <!--
|
|
|
+ WARNING - @mbg.generated
|
|
|
+ This element is automatically generated by MyBatis Generator, do not modify.
|
|
|
+ @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from litemall_log
|
|
|
+ <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.
|
|
|
+ @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ -->
|
|
|
+ select
|
|
|
+ <choose>
|
|
|
+ <when test="selective != null and selective.length > 0">
|
|
|
+ <foreach collection="selective" item="column" separator=",">
|
|
|
+ ${column.escapedColumnName}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ id, `admin`, ip, `type`, `action`, `status`, `result`, `comment`, add_time, update_time,
|
|
|
+ deleted
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+ from litemall_log
|
|
|
+ <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.
|
|
|
+ @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ -->
|
|
|
+ update litemall_log 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.
|
|
|
+ @project https://github.com/itfsw/mybatis-generator-plugin
|
|
|
+ -->
|
|
|
+ update litemall_log set deleted = 1
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </update>
|
|
|
+</mapper>
|