|
|
@@ -1,24 +1,25 @@
|
|
|
<?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.izouma.awesomeadmin.dao.ImageUploadLogMapper" >
|
|
|
- <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.ImageUploadLog" >
|
|
|
- <id column="id" property="id" jdbcType="INTEGER" />
|
|
|
- <result column="del_flag" property="delFlag" jdbcType="CHAR" />
|
|
|
- <result column="update_time" property="updateTime" jdbcType="TIMESTAMP" />
|
|
|
- <result column="update_user" property="updateUser" jdbcType="VARCHAR" />
|
|
|
- <result column="create_time" property="createTime" jdbcType="TIMESTAMP" />
|
|
|
- <result column="create_user" property="createUser" jdbcType="VARCHAR" />
|
|
|
- <result column="image_name" property="imageName" jdbcType="VARCHAR" />
|
|
|
- <result column="url" property="url" jdbcType="VARCHAR" />
|
|
|
- <result column="store_id" property="storeId" jdbcType="VARCHAR" />
|
|
|
- <result column="order_id" property="orderId" jdbcType="VARCHAR" />
|
|
|
- <result column="user_id" property="userId" jdbcType="VARCHAR" />
|
|
|
- <result column="type_flag" property="typeFlag" jdbcType="VARCHAR" />
|
|
|
- <result column="image_size" property="imageSize" jdbcType="DECIMAL" />
|
|
|
- <result column="use_flag" property="useFlag" jdbcType="CHAR" />
|
|
|
- </resultMap>
|
|
|
- <sql id="Base_Column_List" >
|
|
|
- <trim suffixOverrides="," >
|
|
|
+<mapper namespace="com.izouma.awesomeadmin.dao.ImageUploadLogMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
+ <id column="id" property="id" jdbcType="INTEGER"/>
|
|
|
+ <result column="del_flag" property="delFlag" jdbcType="CHAR"/>
|
|
|
+ <result column="update_time" property="updateTime" jdbcType="TIMESTAMP"/>
|
|
|
+ <result column="update_user" property="updateUser" jdbcType="VARCHAR"/>
|
|
|
+ <result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
|
|
|
+ <result column="create_user" property="createUser" jdbcType="VARCHAR"/>
|
|
|
+ <result column="image_name" property="imageName" jdbcType="VARCHAR"/>
|
|
|
+ <result column="url" property="url" jdbcType="VARCHAR"/>
|
|
|
+ <result column="store_id" property="storeId" jdbcType="VARCHAR"/>
|
|
|
+ <result column="order_id" property="orderId" jdbcType="VARCHAR"/>
|
|
|
+ <result column="user_id" property="userId" jdbcType="VARCHAR"/>
|
|
|
+ <result column="type_flag" property="typeFlag" jdbcType="VARCHAR"/>
|
|
|
+ <result column="image_size" property="imageSize" jdbcType="DECIMAL"/>
|
|
|
+ <result column="use_flag" property="useFlag" jdbcType="CHAR"/>
|
|
|
+ <result column="artwork_url" property="artworkUrl" jdbcType="VARCHAR"/>
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ <trim suffixOverrides=",">
|
|
|
id,
|
|
|
|
|
|
del_flag,
|
|
|
@@ -47,155 +48,167 @@
|
|
|
|
|
|
use_flag,
|
|
|
|
|
|
- </trim>
|
|
|
+ artwork_url,
|
|
|
+
|
|
|
+ </trim>
|
|
|
</sql>
|
|
|
- <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
|
|
+ <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
|
|
|
select
|
|
|
- <include refid="Base_Column_List" />
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
from image_upload_log
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</select>
|
|
|
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
delete from image_upload_log
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</delete>
|
|
|
- <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.ImageUploadLog" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.ImageUploadLog" useGeneratedKeys="true"
|
|
|
+ keyProperty="id">
|
|
|
insert into image_upload_log
|
|
|
- <trim prefix="(" suffix=")" suffixOverrides="," >
|
|
|
- <if test="id!= null" >
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="id!= null">
|
|
|
id,
|
|
|
</if>
|
|
|
- <if test="delFlag!= null" >
|
|
|
+ <if test="delFlag!= null">
|
|
|
del_flag,
|
|
|
</if>
|
|
|
- <if test="updateTime!= null" >
|
|
|
+ <if test="updateTime!= null">
|
|
|
update_time,
|
|
|
</if>
|
|
|
- <if test="updateUser!= null" >
|
|
|
+ <if test="updateUser!= null">
|
|
|
update_user,
|
|
|
</if>
|
|
|
- <if test="createTime!= null" >
|
|
|
+ <if test="createTime!= null">
|
|
|
create_time,
|
|
|
</if>
|
|
|
- <if test="createUser!= null" >
|
|
|
+ <if test="createUser!= null">
|
|
|
create_user,
|
|
|
</if>
|
|
|
- <if test="imageName!= null" >
|
|
|
+ <if test="imageName!= null">
|
|
|
image_name,
|
|
|
</if>
|
|
|
- <if test="url!= null" >
|
|
|
+ <if test="url!= null">
|
|
|
url,
|
|
|
</if>
|
|
|
- <if test="storeId!= null" >
|
|
|
+ <if test="storeId!= null">
|
|
|
store_id,
|
|
|
</if>
|
|
|
- <if test="orderId!= null" >
|
|
|
+ <if test="orderId!= null">
|
|
|
order_id,
|
|
|
</if>
|
|
|
- <if test="userId!= null" >
|
|
|
+ <if test="userId!= null">
|
|
|
user_id,
|
|
|
</if>
|
|
|
- <if test="typeFlag!= null" >
|
|
|
+ <if test="typeFlag!= null">
|
|
|
type_flag,
|
|
|
</if>
|
|
|
- <if test="imageSize!= null" >
|
|
|
+ <if test="imageSize!= null">
|
|
|
image_size,
|
|
|
</if>
|
|
|
- <if test="useFlag!= null" >
|
|
|
+ <if test="useFlag!= null">
|
|
|
use_flag,
|
|
|
</if>
|
|
|
- </trim>
|
|
|
- <trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
- <if test="id != null" >
|
|
|
+ <if test="artworkUrl!= null">
|
|
|
+ artwork_url,
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="id != null">
|
|
|
#{id,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
- <if test="delFlag != null" >
|
|
|
+ <if test="delFlag != null">
|
|
|
#{delFlag,jdbcType=CHAR},
|
|
|
</if>
|
|
|
- <if test="updateTime != null" >
|
|
|
+ <if test="updateTime != null">
|
|
|
#{updateTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
- <if test="updateUser != null" >
|
|
|
+ <if test="updateUser != null">
|
|
|
#{updateUser,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="createTime != null" >
|
|
|
+ <if test="createTime != null">
|
|
|
#{createTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
- <if test="createUser != null" >
|
|
|
+ <if test="createUser != null">
|
|
|
#{createUser,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="imageName != null" >
|
|
|
+ <if test="imageName != null">
|
|
|
#{imageName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="url != null" >
|
|
|
+ <if test="url != null">
|
|
|
#{url,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="storeId != null" >
|
|
|
+ <if test="storeId != null">
|
|
|
#{storeId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="orderId != null" >
|
|
|
+ <if test="orderId != null">
|
|
|
#{orderId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="userId != null" >
|
|
|
+ <if test="userId != null">
|
|
|
#{userId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="typeFlag != null" >
|
|
|
+ <if test="typeFlag != null">
|
|
|
#{typeFlag,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="imageSize != null" >
|
|
|
+ <if test="imageSize != null">
|
|
|
#{imageSize,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
- <if test="useFlag != null" >
|
|
|
+ <if test="useFlag != null">
|
|
|
#{useFlag,jdbcType=CHAR},
|
|
|
</if>
|
|
|
- </trim>
|
|
|
+ <if test="artworkUrl != null">
|
|
|
+ #{artworkUrl,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
</insert>
|
|
|
- <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.ImageUploadLog" >
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
update image_upload_log
|
|
|
- <set >
|
|
|
- <if test="id != null" >
|
|
|
- id= #{id,jdbcType=INTEGER},
|
|
|
+ <set>
|
|
|
+ <if test="id != null">
|
|
|
+ id= #{id,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="delFlag != null">
|
|
|
+ del_flag= #{delFlag,jdbcType=CHAR},
|
|
|
</if>
|
|
|
- <if test="delFlag != null" >
|
|
|
- del_flag= #{delFlag,jdbcType=CHAR},
|
|
|
+ <if test="updateTime != null">
|
|
|
+ update_time= #{updateTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
- <if test="updateTime != null" >
|
|
|
- update_time= #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ <if test="updateUser != null">
|
|
|
+ update_user= #{updateUser,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="updateUser != null" >
|
|
|
- update_user= #{updateUser,jdbcType=VARCHAR},
|
|
|
+ <if test="createTime != null">
|
|
|
+ create_time= #{createTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
- <if test="createTime != null" >
|
|
|
- create_time= #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ <if test="createUser != null">
|
|
|
+ create_user= #{createUser,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="createUser != null" >
|
|
|
- create_user= #{createUser,jdbcType=VARCHAR},
|
|
|
+ <if test="imageName != null">
|
|
|
+ image_name= #{imageName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="imageName != null" >
|
|
|
- image_name= #{imageName,jdbcType=VARCHAR},
|
|
|
+ <if test="url != null">
|
|
|
+ url= #{url,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="url != null" >
|
|
|
- url= #{url,jdbcType=VARCHAR},
|
|
|
+ <if test="storeId != null">
|
|
|
+ store_id= #{storeId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="storeId != null" >
|
|
|
- store_id= #{storeId,jdbcType=VARCHAR},
|
|
|
+ <if test="orderId != null">
|
|
|
+ order_id= #{orderId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="orderId != null" >
|
|
|
- order_id= #{orderId,jdbcType=VARCHAR},
|
|
|
+ <if test="userId != null">
|
|
|
+ user_id= #{userId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="userId != null" >
|
|
|
- user_id= #{userId,jdbcType=VARCHAR},
|
|
|
+ <if test="typeFlag != null">
|
|
|
+ type_flag= #{typeFlag,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="typeFlag != null" >
|
|
|
- type_flag= #{typeFlag,jdbcType=VARCHAR},
|
|
|
+ <if test="imageSize != null">
|
|
|
+ image_size= #{imageSize,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
- <if test="imageSize != null" >
|
|
|
- image_size= #{imageSize,jdbcType=DECIMAL},
|
|
|
+ <if test="useFlag != null">
|
|
|
+ use_flag= #{useFlag,jdbcType=CHAR},
|
|
|
</if>
|
|
|
- <if test="useFlag != null" >
|
|
|
- use_flag= #{useFlag,jdbcType=CHAR},
|
|
|
+ <if test="artworkUrl != null">
|
|
|
+ artwork_url= #{artworkUrl,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- </set>
|
|
|
+ </set>
|
|
|
where
|
|
|
<if test="id != null and !"".equals(id)">
|
|
|
id = #{id,jdbcType=INTEGER}
|
|
|
@@ -206,67 +219,70 @@
|
|
|
</if>
|
|
|
|
|
|
</update>
|
|
|
- <select id="queryImageUploadLogByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
- select <include refid="Base_Column_List"/> from image_upload_log
|
|
|
+ <select id="queryImageUploadLogByPage" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from image_upload_log
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
<if test="record.idStr != null and !"".equals(record.idStr)">
|
|
|
and id in (${record.idStr})
|
|
|
</if>
|
|
|
- <if test="record.id != null and !"".equals(record.id)">
|
|
|
- and id = #{record.id}
|
|
|
+ <if test="record.id != null and !"".equals(record.id)">
|
|
|
+ and id = #{record.id}
|
|
|
</if>
|
|
|
- <if test="record.delFlag != null and !"".equals(record.delFlag)">
|
|
|
- and del_flag = #{record.delFlag}
|
|
|
+ <if test="record.delFlag != null and !"".equals(record.delFlag)">
|
|
|
+ and del_flag = #{record.delFlag}
|
|
|
</if>
|
|
|
- <if test="record.updateTime != null and !"".equals(record.updateTime)">
|
|
|
- and update_time = #{record.updateTime}
|
|
|
+ <if test="record.updateTime != null and !"".equals(record.updateTime)">
|
|
|
+ and update_time = #{record.updateTime}
|
|
|
</if>
|
|
|
- <if test="record.updateUser != null and !"".equals(record.updateUser)">
|
|
|
- and update_user = #{record.updateUser}
|
|
|
+ <if test="record.updateUser != null and !"".equals(record.updateUser)">
|
|
|
+ and update_user = #{record.updateUser}
|
|
|
</if>
|
|
|
- <if test="record.createTime != null and !"".equals(record.createTime)">
|
|
|
- and create_time = #{record.createTime}
|
|
|
+ <if test="record.createTime != null and !"".equals(record.createTime)">
|
|
|
+ and create_time = #{record.createTime}
|
|
|
</if>
|
|
|
- <if test="record.createUser != null and !"".equals(record.createUser)">
|
|
|
- and create_user = #{record.createUser}
|
|
|
+ <if test="record.createUser != null and !"".equals(record.createUser)">
|
|
|
+ and create_user = #{record.createUser}
|
|
|
</if>
|
|
|
- <if test="record.imageName != null and !"".equals(record.imageName)">
|
|
|
- and image_name = #{record.imageName}
|
|
|
+ <if test="record.imageName != null and !"".equals(record.imageName)">
|
|
|
+ and image_name = #{record.imageName}
|
|
|
</if>
|
|
|
- <if test="record.url != null and !"".equals(record.url)">
|
|
|
- and url = #{record.url}
|
|
|
+ <if test="record.url != null and !"".equals(record.url)">
|
|
|
+ and url = #{record.url}
|
|
|
</if>
|
|
|
- <if test="record.storeId != null and !"".equals(record.storeId)">
|
|
|
- and store_id = #{record.storeId}
|
|
|
+ <if test="record.storeId != null and !"".equals(record.storeId)">
|
|
|
+ and store_id = #{record.storeId}
|
|
|
</if>
|
|
|
- <if test="record.orderId != null and !"".equals(record.orderId)">
|
|
|
- and order_id = #{record.orderId}
|
|
|
+ <if test="record.orderId != null and !"".equals(record.orderId)">
|
|
|
+ and order_id = #{record.orderId}
|
|
|
</if>
|
|
|
- <if test="record.userId != null and !"".equals(record.userId)">
|
|
|
- and user_id = #{record.userId}
|
|
|
+ <if test="record.userId != null and !"".equals(record.userId)">
|
|
|
+ and user_id = #{record.userId}
|
|
|
</if>
|
|
|
- <if test="record.typeFlag != null and !"".equals(record.typeFlag)">
|
|
|
- and type_flag = #{record.typeFlag}
|
|
|
+ <if test="record.typeFlag != null and !"".equals(record.typeFlag)">
|
|
|
+ and type_flag = #{record.typeFlag}
|
|
|
</if>
|
|
|
- <if test="record.imageSize != null and !"".equals(record.imageSize)">
|
|
|
- and image_size = #{record.imageSize}
|
|
|
+ <if test="record.imageSize != null and !"".equals(record.imageSize)">
|
|
|
+ and image_size = #{record.imageSize}
|
|
|
</if>
|
|
|
- <if test="record.useFlag != null and !"".equals(record.useFlag)">
|
|
|
- and use_flag = #{record.useFlag}
|
|
|
+ <if test="record.useFlag != null and !"".equals(record.useFlag)">
|
|
|
+ and use_flag = #{record.useFlag}
|
|
|
+ </if>
|
|
|
+ <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR image_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR url LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR store_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR order_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR user_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR type_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR image_size LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR use_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ </trim>
|
|
|
</if>
|
|
|
- <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
- <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR image_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR url LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR store_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR order_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR user_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR type_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR image_size LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR use_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
- </trim>
|
|
|
- </if>
|
|
|
|
|
|
<if test="record.advancedQuery != null and !"".equals(record.advancedQuery)">
|
|
|
<foreach item="item" index="index" collection="record.advancedQuery.split('_;')">
|
|
|
@@ -320,101 +336,104 @@
|
|
|
</if>
|
|
|
id desc
|
|
|
</select>
|
|
|
- <select id="queryAllImageUploadLog" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
- select <include refid="Base_Column_List"/> from image_upload_log
|
|
|
+ <select id="queryAllImageUploadLog" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from image_upload_log
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
<if test="idStr != null and !"".equals(idStr)">
|
|
|
and id in (${idStr})
|
|
|
</if>
|
|
|
- <if test="id != null and !"".equals(id)">
|
|
|
- and id = #{id}
|
|
|
+ <if test="id != null and !"".equals(id)">
|
|
|
+ and id = #{id}
|
|
|
</if>
|
|
|
- <if test="delFlag != null and !"".equals(delFlag)">
|
|
|
- and del_flag = #{delFlag}
|
|
|
+ <if test="delFlag != null and !"".equals(delFlag)">
|
|
|
+ and del_flag = #{delFlag}
|
|
|
</if>
|
|
|
- <if test="updateTime != null and !"".equals(updateTime)">
|
|
|
- and update_time = #{updateTime}
|
|
|
+ <if test="updateTime != null and !"".equals(updateTime)">
|
|
|
+ and update_time = #{updateTime}
|
|
|
</if>
|
|
|
- <if test="updateUser != null and !"".equals(updateUser)">
|
|
|
- and update_user = #{updateUser}
|
|
|
+ <if test="updateUser != null and !"".equals(updateUser)">
|
|
|
+ and update_user = #{updateUser}
|
|
|
</if>
|
|
|
- <if test="createTime != null and !"".equals(createTime)">
|
|
|
- and create_time = #{createTime}
|
|
|
+ <if test="createTime != null and !"".equals(createTime)">
|
|
|
+ and create_time = #{createTime}
|
|
|
</if>
|
|
|
- <if test="createUser != null and !"".equals(createUser)">
|
|
|
- and create_user = #{createUser}
|
|
|
+ <if test="createUser != null and !"".equals(createUser)">
|
|
|
+ and create_user = #{createUser}
|
|
|
</if>
|
|
|
- <if test="imageName != null and !"".equals(imageName)">
|
|
|
- and image_name = #{imageName}
|
|
|
+ <if test="imageName != null and !"".equals(imageName)">
|
|
|
+ and image_name = #{imageName}
|
|
|
</if>
|
|
|
- <if test="url != null and !"".equals(url)">
|
|
|
- and url = #{url}
|
|
|
+ <if test="url != null and !"".equals(url)">
|
|
|
+ and url = #{url}
|
|
|
</if>
|
|
|
- <if test="storeId != null and !"".equals(storeId)">
|
|
|
- and store_id = #{storeId}
|
|
|
+ <if test="storeId != null and !"".equals(storeId)">
|
|
|
+ and store_id = #{storeId}
|
|
|
</if>
|
|
|
- <if test="orderId != null and !"".equals(orderId)">
|
|
|
- and order_id = #{orderId}
|
|
|
+ <if test="orderId != null and !"".equals(orderId)">
|
|
|
+ and order_id = #{orderId}
|
|
|
</if>
|
|
|
- <if test="userId != null and !"".equals(userId)">
|
|
|
- and user_id = #{userId}
|
|
|
+ <if test="userId != null and !"".equals(userId)">
|
|
|
+ and user_id = #{userId}
|
|
|
</if>
|
|
|
- <if test="typeFlag != null and !"".equals(typeFlag)">
|
|
|
- and type_flag = #{typeFlag}
|
|
|
+ <if test="typeFlag != null and !"".equals(typeFlag)">
|
|
|
+ and type_flag = #{typeFlag}
|
|
|
</if>
|
|
|
- <if test="imageSize != null and !"".equals(imageSize)">
|
|
|
- and image_size = #{imageSize}
|
|
|
+ <if test="imageSize != null and !"".equals(imageSize)">
|
|
|
+ and image_size = #{imageSize}
|
|
|
</if>
|
|
|
- <if test="useFlag != null and !"".equals(useFlag)">
|
|
|
- and use_flag = #{useFlag}
|
|
|
+ <if test="useFlag != null and !"".equals(useFlag)">
|
|
|
+ and use_flag = #{useFlag}
|
|
|
</if>
|
|
|
- <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
- <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR image_name LIKE concat('%',#{searchKey},'%')
|
|
|
- OR url LIKE concat('%',#{searchKey},'%')
|
|
|
- OR store_id LIKE concat('%',#{searchKey},'%')
|
|
|
- OR order_id LIKE concat('%',#{searchKey},'%')
|
|
|
- OR user_id LIKE concat('%',#{searchKey},'%')
|
|
|
- OR type_flag LIKE concat('%',#{searchKey},'%')
|
|
|
- OR image_size LIKE concat('%',#{searchKey},'%')
|
|
|
- OR use_flag LIKE concat('%',#{searchKey},'%')
|
|
|
- </trim>
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR image_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR url LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR store_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR order_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR user_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR type_flag LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR image_size LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR use_flag LIKE concat('%',#{searchKey},'%')
|
|
|
+ </trim>
|
|
|
</if>
|
|
|
-<if test="advancedQuery != null and !"".equals(advancedQuery)">
|
|
|
- <foreach item="item" index="index" collection="advancedQuery.split('_;')">
|
|
|
- <choose>
|
|
|
- <when test="item.indexOf('like') != -1">
|
|
|
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
- <if test="detailIndex == 3">
|
|
|
- concat('%',#{itemDetail},'%')
|
|
|
- </if>
|
|
|
+ <if test="advancedQuery != null and !"".equals(advancedQuery)">
|
|
|
+ <foreach item="item" index="index" collection="advancedQuery.split('_;')">
|
|
|
+ <choose>
|
|
|
+ <when test="item.indexOf('like') != -1">
|
|
|
+ <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
+ <if test="detailIndex == 3">
|
|
|
+ concat('%',#{itemDetail},'%')
|
|
|
+ </if>
|
|
|
|
|
|
- <if test="detailIndex < 3">
|
|
|
- ${itemDetail}
|
|
|
- </if>
|
|
|
+ <if test="detailIndex < 3">
|
|
|
+ ${itemDetail}
|
|
|
+ </if>
|
|
|
|
|
|
- </foreach>
|
|
|
- </when>
|
|
|
- <otherwise>
|
|
|
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
- <if test="detailIndex == 3">
|
|
|
- #{itemDetail}
|
|
|
- </if>
|
|
|
-
|
|
|
- <if test="detailIndex < 3">
|
|
|
- ${itemDetail}
|
|
|
- </if>
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
+ <if test="detailIndex == 3">
|
|
|
+ #{itemDetail}
|
|
|
+ </if>
|
|
|
|
|
|
- </foreach>
|
|
|
- </otherwise>
|
|
|
- </choose>
|
|
|
+ <if test="detailIndex < 3">
|
|
|
+ ${itemDetail}
|
|
|
+ </if>
|
|
|
+
|
|
|
+ </foreach>
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
|
|
|
|
|
|
- </foreach>
|
|
|
+ </foreach>
|
|
|
|
|
|
|
|
|
-</if>
|
|
|
+ </if>
|
|
|
</where>
|
|
|
order by
|
|
|
|
|
|
@@ -433,53 +452,56 @@
|
|
|
|
|
|
id desc
|
|
|
</select>
|
|
|
- <select id="queryImageUploadLog" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
- select <include refid="Base_Column_List"/> from image_upload_log
|
|
|
+ <select id="queryImageUploadLog" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from image_upload_log
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
- <if test="id != null and !"".equals(id)">
|
|
|
+ <if test="id != null and !"".equals(id)">
|
|
|
and id = #{id}
|
|
|
</if>
|
|
|
- <if test="delFlag != null and !"".equals(delFlag)">
|
|
|
+ <if test="delFlag != null and !"".equals(delFlag)">
|
|
|
and del_flag = #{delFlag}
|
|
|
</if>
|
|
|
- <if test="updateTime != null and !"".equals(updateTime)">
|
|
|
+ <if test="updateTime != null and !"".equals(updateTime)">
|
|
|
and update_time = #{updateTime}
|
|
|
</if>
|
|
|
- <if test="updateUser != null and !"".equals(updateUser)">
|
|
|
+ <if test="updateUser != null and !"".equals(updateUser)">
|
|
|
and update_user = #{updateUser}
|
|
|
</if>
|
|
|
- <if test="createTime != null and !"".equals(createTime)">
|
|
|
+ <if test="createTime != null and !"".equals(createTime)">
|
|
|
and create_time = #{createTime}
|
|
|
</if>
|
|
|
- <if test="createUser != null and !"".equals(createUser)">
|
|
|
+ <if test="createUser != null and !"".equals(createUser)">
|
|
|
and create_user = #{createUser}
|
|
|
</if>
|
|
|
- <if test="imageName != null and !"".equals(imageName)">
|
|
|
+ <if test="imageName != null and !"".equals(imageName)">
|
|
|
and image_name = #{imageName}
|
|
|
</if>
|
|
|
- <if test="url != null and !"".equals(url)">
|
|
|
+ <if test="url != null and !"".equals(url)">
|
|
|
and url = #{url}
|
|
|
</if>
|
|
|
- <if test="storeId != null and !"".equals(storeId)">
|
|
|
+ <if test="storeId != null and !"".equals(storeId)">
|
|
|
and store_id = #{storeId}
|
|
|
</if>
|
|
|
- <if test="orderId != null and !"".equals(orderId)">
|
|
|
+ <if test="orderId != null and !"".equals(orderId)">
|
|
|
and order_id = #{orderId}
|
|
|
</if>
|
|
|
- <if test="userId != null and !"".equals(userId)">
|
|
|
+ <if test="userId != null and !"".equals(userId)">
|
|
|
and user_id = #{userId}
|
|
|
</if>
|
|
|
- <if test="typeFlag != null and !"".equals(typeFlag)">
|
|
|
+ <if test="typeFlag != null and !"".equals(typeFlag)">
|
|
|
and type_flag = #{typeFlag}
|
|
|
</if>
|
|
|
- <if test="imageSize != null and !"".equals(imageSize)">
|
|
|
+ <if test="imageSize != null and !"".equals(imageSize)">
|
|
|
and image_size = #{imageSize}
|
|
|
</if>
|
|
|
- <if test="useFlag != null and !"".equals(useFlag)">
|
|
|
+ <if test="useFlag != null and !"".equals(useFlag)">
|
|
|
and use_flag = #{useFlag}
|
|
|
</if>
|
|
|
-
|
|
|
+
|
|
|
</where>
|
|
|
LIMIT 1
|
|
|
</select>
|
|
|
@@ -490,18 +512,23 @@
|
|
|
|
|
|
</update>
|
|
|
<select id="query" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
- select <include refid="Base_Column_List"/> from image_upload_log
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from image_upload_log
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
- </where>
|
|
|
+ </where>
|
|
|
order by id desc
|
|
|
</select>
|
|
|
|
|
|
- <select id="queryDelOssImage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
- select <include refid="Base_Column_List"/> from image_upload_log
|
|
|
+ <select id="queryDelOssImage" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.ImageUploadLog">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from image_upload_log
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
- and order_id = #{orderId}
|
|
|
+ and order_id = #{orderId}
|
|
|
AND url NOT IN (
|
|
|
SELECT
|
|
|
original_image AS image_url
|
|
|
@@ -511,7 +538,7 @@
|
|
|
del_flag = 'N'
|
|
|
AND original_image IS NOT NULL
|
|
|
AND original_image != ''
|
|
|
- and order_id = #{orderId}
|
|
|
+ and order_id = #{orderId}
|
|
|
UNION
|
|
|
SELECT
|
|
|
finished_image AS image_url
|
|
|
@@ -521,9 +548,9 @@
|
|
|
del_flag = 'N'
|
|
|
AND finished_image IS NOT NULL
|
|
|
AND finished_image != ''
|
|
|
- and order_id = #{orderId}
|
|
|
+ and order_id = #{orderId}
|
|
|
)
|
|
|
- </where>
|
|
|
+ </where>
|
|
|
order by id desc
|
|
|
</select>
|
|
|
</mapper>
|