Bladeren bron

图片下载进度

suochencheng 7 jaren geleden
bovenliggende
commit
129e7ae979
1 gewijzigde bestanden met toevoegingen van 229 en 216 verwijderingen
  1. 229 216
      src/main/java/com/izouma/awesomeadmin/dao/ImageDownLogMapper.xml

+ 229 - 216
src/main/java/com/izouma/awesomeadmin/dao/ImageDownLogMapper.xml

@@ -1,24 +1,24 @@
 <?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.ImageDownLogMapper" >
-    <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.ImageDownLog" >
-                <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="order_id" property="orderId" jdbcType="VARCHAR" />
-                                <result column="type_flag" property="typeFlag" jdbcType="VARCHAR" />
-                                <result column="image_name" property="imageName" jdbcType="VARCHAR" />
-                                <result column="status_flag" property="statusFlag" jdbcType="INTEGER" />
-                                <result column="image_size" property="imageSize" jdbcType="DECIMAL" />
-                                <result column="image_code" property="imageCode" jdbcType="VARCHAR" />
-                                <result column="total_num" property="totalNum" jdbcType="INTEGER" />
-                                <result column="now_num" property="nowNum" jdbcType="INTEGER" />
-            </resultMap>
-    <sql id="Base_Column_List" >
-        <trim  suffixOverrides="," >
+<mapper namespace="com.izouma.awesomeadmin.dao.ImageDownLogMapper">
+    <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.ImageDownLog">
+        <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="order_id" property="orderId" jdbcType="VARCHAR"/>
+        <result column="type_flag" property="typeFlag" jdbcType="VARCHAR"/>
+        <result column="image_name" property="imageName" jdbcType="VARCHAR"/>
+        <result column="status_flag" property="statusFlag" jdbcType="INTEGER"/>
+        <result column="image_size" property="imageSize" jdbcType="DECIMAL"/>
+        <result column="image_code" property="imageCode" jdbcType="VARCHAR"/>
+        <result column="total_num" property="totalNum" jdbcType="INTEGER"/>
+        <result column="now_num" property="nowNum" jdbcType="INTEGER"/>
+    </resultMap>
+    <sql id="Base_Column_List">
+        <trim suffixOverrides=",">
             id,
 
             del_flag,
@@ -47,155 +47,156 @@
 
             now_num,
 
-            </trim>
+        </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_down_log
         where id = #{id,jdbcType=INTEGER}
     </select>
-    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
+    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
         delete from image_down_log
         where id = #{id,jdbcType=INTEGER}
     </delete>
-    <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.ImageDownLog" useGeneratedKeys="true" keyProperty="id">
+    <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.ImageDownLog" useGeneratedKeys="true"
+            keyProperty="id">
         insert into image_down_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="orderId!= null" >
+            <if test="orderId!= null">
                 order_id,
             </if>
-                <if test="typeFlag!= null" >
+            <if test="typeFlag!= null">
                 type_flag,
             </if>
-                <if test="imageName!= null" >
+            <if test="imageName!= null">
                 image_name,
             </if>
-                <if test="statusFlag!= null" >
+            <if test="statusFlag!= null">
                 status_flag,
             </if>
-                <if test="imageSize!= null" >
+            <if test="imageSize!= null">
                 image_size,
             </if>
-                <if test="imageCode!= null" >
+            <if test="imageCode!= null">
                 image_code,
             </if>
-                <if test="totalNum!= null" >
+            <if test="totalNum!= null">
                 total_num,
             </if>
-                <if test="nowNum!= null" >
+            <if test="nowNum!= null">
                 now_num,
             </if>
-            </trim>
-        <trim prefix="values (" suffix=")" suffixOverrides="," >
-                    <if test="id != null" >
+        </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="orderId != null" >
+            <if test="orderId != null">
                 #{orderId,jdbcType=VARCHAR},
             </if>
-                    <if test="typeFlag != null" >
+            <if test="typeFlag != null">
                 #{typeFlag,jdbcType=VARCHAR},
             </if>
-                    <if test="imageName != null" >
+            <if test="imageName != null">
                 #{imageName,jdbcType=VARCHAR},
             </if>
-                    <if test="statusFlag != null" >
+            <if test="statusFlag != null">
                 #{statusFlag,jdbcType=INTEGER},
             </if>
-                    <if test="imageSize != null" >
+            <if test="imageSize != null">
                 #{imageSize,jdbcType=DECIMAL},
             </if>
-                    <if test="imageCode != null" >
+            <if test="imageCode != null">
                 #{imageCode,jdbcType=VARCHAR},
             </if>
-                    <if test="totalNum != null" >
+            <if test="totalNum != null">
                 #{totalNum,jdbcType=INTEGER},
             </if>
-                    <if test="nowNum != null" >
+            <if test="nowNum != null">
                 #{nowNum,jdbcType=INTEGER},
             </if>
-                </trim>
+        </trim>
     </insert>
-    <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.ImageDownLog" >
+    <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.ImageDownLog">
         update image_down_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 test="delFlag != null">
+                del_flag= #{delFlag,jdbcType=CHAR},
             </if>
-                     <if test="updateTime != null" >
-               update_time= #{updateTime,jdbcType=TIMESTAMP},
+            <if test="updateTime != null">
+                update_time= #{updateTime,jdbcType=TIMESTAMP},
             </if>
-                     <if test="updateUser != null" >
-               update_user= #{updateUser,jdbcType=VARCHAR},
+            <if test="updateUser != null">
+                update_user= #{updateUser,jdbcType=VARCHAR},
             </if>
-                     <if test="createTime != null" >
-               create_time= #{createTime,jdbcType=TIMESTAMP},
+            <if test="createTime != null">
+                create_time= #{createTime,jdbcType=TIMESTAMP},
             </if>
-                     <if test="createUser != null" >
-               create_user= #{createUser,jdbcType=VARCHAR},
+            <if test="createUser != null">
+                create_user= #{createUser,jdbcType=VARCHAR},
             </if>
-                     <if test="orderId != null" >
-               order_id= #{orderId,jdbcType=VARCHAR},
+            <if test="orderId != null">
+                order_id= #{orderId,jdbcType=VARCHAR},
             </if>
-                     <if test="typeFlag != null" >
-               type_flag= #{typeFlag,jdbcType=VARCHAR},
+            <if test="typeFlag != null">
+                type_flag= #{typeFlag,jdbcType=VARCHAR},
             </if>
-                     <if test="imageName != null" >
-               image_name= #{imageName,jdbcType=VARCHAR},
+            <if test="imageName != null">
+                image_name= #{imageName,jdbcType=VARCHAR},
             </if>
-                     <if test="statusFlag != null" >
-               status_flag= #{statusFlag,jdbcType=INTEGER},
+            <if test="statusFlag != null">
+                status_flag= #{statusFlag,jdbcType=INTEGER},
             </if>
-                     <if test="imageSize != null" >
-               image_size= #{imageSize,jdbcType=DECIMAL},
+            <if test="imageSize != null">
+                image_size= #{imageSize,jdbcType=DECIMAL},
             </if>
-                     <if test="imageCode != null" >
-               image_code= #{imageCode,jdbcType=VARCHAR},
+            <if test="imageCode != null">
+                image_code= #{imageCode,jdbcType=VARCHAR},
             </if>
-                     <if test="totalNum != null" >
-               total_num= #{totalNum,jdbcType=INTEGER},
+            <if test="totalNum != null">
+                total_num= #{totalNum,jdbcType=INTEGER},
             </if>
-                     <if test="nowNum != null" >
-               now_num= #{nowNum,jdbcType=INTEGER},
+            <if test="nowNum != null">
+                now_num= #{nowNum,jdbcType=INTEGER},
             </if>
-                 </set>
+        </set>
         where
         <if test="id != null and !&quot;&quot;.equals(id)">
             id = #{id,jdbcType=INTEGER}
@@ -206,67 +207,70 @@
         </if>
 
     </update>
-    <select id="queryImageDownLogByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.ImageDownLog">
-        select <include refid="Base_Column_List"/> from image_down_log
+    <select id="queryImageDownLogByPage" parameterType="java.util.Map"
+            resultType="com.izouma.awesomeadmin.model.ImageDownLog">
+        select
+        <include refid="Base_Column_List"/>
+        from image_down_log
         <where>
             and del_flag = 'N'
             <if test="record.idStr != null and !&quot;&quot;.equals(record.idStr)">
                 and id in (${record.idStr})
             </if>
-                    <if test="record.id != null and !&quot;&quot;.equals(record.id)">
-                and  id = #{record.id}
+            <if test="record.id != null and !&quot;&quot;.equals(record.id)">
+                and id = #{record.id}
+            </if>
+            <if test="record.delFlag != null and !&quot;&quot;.equals(record.delFlag)">
+                and del_flag = #{record.delFlag}
             </if>
-                     <if test="record.delFlag != null and !&quot;&quot;.equals(record.delFlag)">
-                and  del_flag = #{record.delFlag}
+            <if test="record.updateTime != null and !&quot;&quot;.equals(record.updateTime)">
+                and update_time = #{record.updateTime}
             </if>
-                     <if test="record.updateTime != null and !&quot;&quot;.equals(record.updateTime)">
-                and  update_time = #{record.updateTime}
+            <if test="record.updateUser != null and !&quot;&quot;.equals(record.updateUser)">
+                and update_user = #{record.updateUser}
             </if>
-                     <if test="record.updateUser != null and !&quot;&quot;.equals(record.updateUser)">
-                and  update_user = #{record.updateUser}
+            <if test="record.createTime != null and !&quot;&quot;.equals(record.createTime)">
+                and create_time = #{record.createTime}
             </if>
-                     <if test="record.createTime != null and !&quot;&quot;.equals(record.createTime)">
-                and  create_time = #{record.createTime}
+            <if test="record.createUser != null and !&quot;&quot;.equals(record.createUser)">
+                and create_user = #{record.createUser}
             </if>
-                     <if test="record.createUser != null and !&quot;&quot;.equals(record.createUser)">
-                and  create_user = #{record.createUser}
+            <if test="record.orderId != null and !&quot;&quot;.equals(record.orderId)">
+                and order_id = #{record.orderId}
             </if>
-                     <if test="record.orderId != null and !&quot;&quot;.equals(record.orderId)">
-                and  order_id = #{record.orderId}
+            <if test="record.typeFlag != null and !&quot;&quot;.equals(record.typeFlag)">
+                and type_flag = #{record.typeFlag}
             </if>
-                     <if test="record.typeFlag != null and !&quot;&quot;.equals(record.typeFlag)">
-                and  type_flag = #{record.typeFlag}
+            <if test="record.imageName != null and !&quot;&quot;.equals(record.imageName)">
+                and image_name = #{record.imageName}
             </if>
-                     <if test="record.imageName != null and !&quot;&quot;.equals(record.imageName)">
-                and  image_name = #{record.imageName}
+            <if test="record.statusFlag != null and !&quot;&quot;.equals(record.statusFlag)">
+                and status_flag = #{record.statusFlag}
             </if>
-                     <if test="record.statusFlag != null and !&quot;&quot;.equals(record.statusFlag)">
-                and  status_flag = #{record.statusFlag}
+            <if test="record.imageSize != null and !&quot;&quot;.equals(record.imageSize)">
+                and image_size = #{record.imageSize}
             </if>
-                     <if test="record.imageSize != null and !&quot;&quot;.equals(record.imageSize)">
-                and  image_size = #{record.imageSize}
+            <if test="record.imageCode != null and !&quot;&quot;.equals(record.imageCode)">
+                and image_code = #{record.imageCode}
             </if>
-                     <if test="record.imageCode != null and !&quot;&quot;.equals(record.imageCode)">
-                and  image_code = #{record.imageCode}
+            <if test="record.totalNum != null and !&quot;&quot;.equals(record.totalNum)">
+                and total_num = #{record.totalNum}
             </if>
-                     <if test="record.totalNum != null and !&quot;&quot;.equals(record.totalNum)">
-                and  total_num = #{record.totalNum}
+            <if test="record.nowNum != null and !&quot;&quot;.equals(record.nowNum)">
+                and now_num = #{record.nowNum}
             </if>
-                     <if test="record.nowNum != null and !&quot;&quot;.equals(record.nowNum)">
-                and  now_num = #{record.nowNum}
+            <if test="record.searchKey != null and !&quot;&quot;.equals(record.searchKey)">
+                <trim prefix="and (" suffix=")" prefixOverrides="OR">
+                    OR order_id LIKE concat('%',#{record.searchKey},'%')
+                    OR type_flag LIKE concat('%',#{record.searchKey},'%')
+                    OR image_name LIKE concat('%',#{record.searchKey},'%')
+                    OR status_flag LIKE concat('%',#{record.searchKey},'%')
+                    OR image_size LIKE concat('%',#{record.searchKey},'%')
+                    OR image_code LIKE concat('%',#{record.searchKey},'%')
+                    OR total_num LIKE concat('%',#{record.searchKey},'%')
+                    OR now_num LIKE concat('%',#{record.searchKey},'%')
+                </trim>
             </if>
-                  <if test="record.searchKey != null and !&quot;&quot;.equals(record.searchKey)">
-             <trim prefix="and (" suffix=")" prefixOverrides="OR" >
-                                                                                                                                                                                                                                                                                                                                                                                                                                    OR  order_id LIKE concat('%',#{record.searchKey},'%')
-                                                                                                    OR  type_flag LIKE concat('%',#{record.searchKey},'%')
-                                                                                                    OR  image_name LIKE concat('%',#{record.searchKey},'%')
-                                                                                                    OR  status_flag LIKE concat('%',#{record.searchKey},'%')
-                                                                                                    OR  image_size LIKE concat('%',#{record.searchKey},'%')
-                                                                                                    OR  image_code LIKE concat('%',#{record.searchKey},'%')
-                                                                                                    OR  total_num LIKE concat('%',#{record.searchKey},'%')
-                                                                                                    OR  now_num LIKE concat('%',#{record.searchKey},'%')
-                                                             </trim>
-         </if>
 
             <if test="record.advancedQuery != null and !&quot;&quot;.equals(record.advancedQuery)">
                 <foreach item="item" index="index" collection="record.advancedQuery.split('_;')">
@@ -320,101 +324,104 @@
         </if>
         id desc
     </select>
-    <select id="queryAllImageDownLog" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.ImageDownLog">
-        select <include refid="Base_Column_List"/> from image_down_log
+    <select id="queryAllImageDownLog" parameterType="java.util.Map"
+            resultType="com.izouma.awesomeadmin.model.ImageDownLog">
+        select
+        <include refid="Base_Column_List"/>
+        from image_down_log
         <where>
             and del_flag = 'N'
             <if test="idStr != null and !&quot;&quot;.equals(idStr)">
                 and id in (${idStr})
             </if>
-                    <if test="id != null and !&quot;&quot;.equals(id)">
-                and  id = #{id}
+            <if test="id != null and !&quot;&quot;.equals(id)">
+                and id = #{id}
             </if>
-                    <if test="delFlag != null and !&quot;&quot;.equals(delFlag)">
-                and  del_flag = #{delFlag}
+            <if test="delFlag != null and !&quot;&quot;.equals(delFlag)">
+                and del_flag = #{delFlag}
             </if>
-                    <if test="updateTime != null and !&quot;&quot;.equals(updateTime)">
-                and  update_time = #{updateTime}
+            <if test="updateTime != null and !&quot;&quot;.equals(updateTime)">
+                and update_time = #{updateTime}
             </if>
-                    <if test="updateUser != null and !&quot;&quot;.equals(updateUser)">
-                and  update_user = #{updateUser}
+            <if test="updateUser != null and !&quot;&quot;.equals(updateUser)">
+                and update_user = #{updateUser}
             </if>
-                    <if test="createTime != null and !&quot;&quot;.equals(createTime)">
-                and  create_time = #{createTime}
+            <if test="createTime != null and !&quot;&quot;.equals(createTime)">
+                and create_time = #{createTime}
             </if>
-                    <if test="createUser != null and !&quot;&quot;.equals(createUser)">
-                and  create_user = #{createUser}
+            <if test="createUser != null and !&quot;&quot;.equals(createUser)">
+                and create_user = #{createUser}
             </if>
-                    <if test="orderId != null and !&quot;&quot;.equals(orderId)">
-                and  order_id = #{orderId}
+            <if test="orderId != null and !&quot;&quot;.equals(orderId)">
+                and order_id = #{orderId}
             </if>
-                    <if test="typeFlag != null and !&quot;&quot;.equals(typeFlag)">
-                and  type_flag = #{typeFlag}
+            <if test="typeFlag != null and !&quot;&quot;.equals(typeFlag)">
+                and type_flag = #{typeFlag}
             </if>
-                    <if test="imageName != null and !&quot;&quot;.equals(imageName)">
-                and  image_name = #{imageName}
+            <if test="imageName != null and !&quot;&quot;.equals(imageName)">
+                and image_name = #{imageName}
             </if>
-                    <if test="statusFlag != null and !&quot;&quot;.equals(statusFlag)">
-                and  status_flag = #{statusFlag}
+            <if test="statusFlag != null and !&quot;&quot;.equals(statusFlag)">
+                and status_flag = #{statusFlag}
             </if>
-                    <if test="imageSize != null and !&quot;&quot;.equals(imageSize)">
-                and  image_size = #{imageSize}
+            <if test="imageSize != null and !&quot;&quot;.equals(imageSize)">
+                and image_size = #{imageSize}
             </if>
-                    <if test="imageCode != null and !&quot;&quot;.equals(imageCode)">
-                and  image_code = #{imageCode}
+            <if test="imageCode != null and !&quot;&quot;.equals(imageCode)">
+                and image_code = #{imageCode}
             </if>
-                    <if test="totalNum != null and !&quot;&quot;.equals(totalNum)">
-                and  total_num = #{totalNum}
+            <if test="totalNum != null and !&quot;&quot;.equals(totalNum)">
+                and total_num = #{totalNum}
             </if>
-                    <if test="nowNum != null and !&quot;&quot;.equals(nowNum)">
-                and  now_num = #{nowNum}
+            <if test="nowNum != null and !&quot;&quot;.equals(nowNum)">
+                and now_num = #{nowNum}
             </if>
-                    <if test="searchKey != null and !&quot;&quot;.equals(searchKey)">
-                <trim prefix="and (" suffix=")" prefixOverrides="OR" >
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OR  order_id LIKE concat('%',#{searchKey},'%')
-                                                                                                                                                        OR  type_flag LIKE concat('%',#{searchKey},'%')
-                                                                                                                                                        OR  image_name LIKE concat('%',#{searchKey},'%')
-                                                                                                                                                        OR  status_flag LIKE concat('%',#{searchKey},'%')
-                                                                                                                                                        OR  image_size LIKE concat('%',#{searchKey},'%')
-                                                                                                                                                        OR  image_code LIKE concat('%',#{searchKey},'%')
-                                                                                                                                                        OR  total_num LIKE concat('%',#{searchKey},'%')
-                                                                                                                                                        OR  now_num LIKE concat('%',#{searchKey},'%')
-                                                                                        </trim>
+            <if test="searchKey != null and !&quot;&quot;.equals(searchKey)">
+                <trim prefix="and (" suffix=")" prefixOverrides="OR">
+                    OR order_id LIKE concat('%',#{searchKey},'%')
+                    OR type_flag LIKE concat('%',#{searchKey},'%')
+                    OR image_name LIKE concat('%',#{searchKey},'%')
+                    OR status_flag LIKE concat('%',#{searchKey},'%')
+                    OR image_size LIKE concat('%',#{searchKey},'%')
+                    OR image_code LIKE concat('%',#{searchKey},'%')
+                    OR total_num LIKE concat('%',#{searchKey},'%')
+                    OR now_num LIKE concat('%',#{searchKey},'%')
+                </trim>
             </if>
-<if test="advancedQuery != null and !&quot;&quot;.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 !&quot;&quot;.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 &lt; 3">
-                        ${itemDetail}
-                    </if>
+                                <if test="detailIndex &lt; 3">
+                                    ${itemDetail}
+                                </if>
 
-                </foreach>
-            </when>
-            <otherwise>
-                <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
-                    <if test="detailIndex == 3">
-                        #{itemDetail}
-                    </if>
-
-                    <if test="detailIndex &lt; 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 &lt; 3">
+                                    ${itemDetail}
+                                </if>
+
+                            </foreach>
+                        </otherwise>
+                    </choose>
 
 
-    </foreach>
+                </foreach>
 
 
-</if>
+            </if>
         </where>
         order by
 
@@ -433,55 +440,59 @@
 
         id desc
     </select>
-    <select id="queryImageDownLog" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.ImageDownLog">
-        select <include refid="Base_Column_List"/> from image_down_log
+    <select id="queryImageDownLog" parameterType="java.util.Map"
+            resultType="com.izouma.awesomeadmin.model.ImageDownLog">
+        select
+        <include refid="Base_Column_List"/>
+        from image_down_log
         <where>
             and del_flag = 'N'
-                    <if test="id != null and !&quot;&quot;.equals(id)">
+            <if test="id != null and !&quot;&quot;.equals(id)">
                 and id = #{id}
             </if>
-                     <if test="delFlag != null and !&quot;&quot;.equals(delFlag)">
+            <if test="delFlag != null and !&quot;&quot;.equals(delFlag)">
                 and del_flag = #{delFlag}
             </if>
-                     <if test="updateTime != null and !&quot;&quot;.equals(updateTime)">
+            <if test="updateTime != null and !&quot;&quot;.equals(updateTime)">
                 and update_time = #{updateTime}
             </if>
-                     <if test="updateUser != null and !&quot;&quot;.equals(updateUser)">
+            <if test="updateUser != null and !&quot;&quot;.equals(updateUser)">
                 and update_user = #{updateUser}
             </if>
-                     <if test="createTime != null and !&quot;&quot;.equals(createTime)">
+            <if test="createTime != null and !&quot;&quot;.equals(createTime)">
                 and create_time = #{createTime}
             </if>
-                     <if test="createUser != null and !&quot;&quot;.equals(createUser)">
+            <if test="createUser != null and !&quot;&quot;.equals(createUser)">
                 and create_user = #{createUser}
             </if>
-                     <if test="orderId != null and !&quot;&quot;.equals(orderId)">
+            <if test="orderId != null and !&quot;&quot;.equals(orderId)">
                 and order_id = #{orderId}
             </if>
-                     <if test="typeFlag != null and !&quot;&quot;.equals(typeFlag)">
+            <if test="typeFlag != null and !&quot;&quot;.equals(typeFlag)">
                 and type_flag = #{typeFlag}
             </if>
-                     <if test="imageName != null and !&quot;&quot;.equals(imageName)">
+            <if test="imageName != null and !&quot;&quot;.equals(imageName)">
                 and image_name = #{imageName}
             </if>
-                     <if test="statusFlag != null and !&quot;&quot;.equals(statusFlag)">
+            <if test="statusFlag != null and !&quot;&quot;.equals(statusFlag)">
                 and status_flag = #{statusFlag}
             </if>
-                     <if test="imageSize != null and !&quot;&quot;.equals(imageSize)">
+            <if test="imageSize != null and !&quot;&quot;.equals(imageSize)">
                 and image_size = #{imageSize}
             </if>
-                     <if test="imageCode != null and !&quot;&quot;.equals(imageCode)">
+            <if test="imageCode != null and !&quot;&quot;.equals(imageCode)">
                 and image_code = #{imageCode}
             </if>
-                     <if test="totalNum != null and !&quot;&quot;.equals(totalNum)">
+            <if test="totalNum != null and !&quot;&quot;.equals(totalNum)">
                 and total_num = #{totalNum}
             </if>
-                     <if test="nowNum != null and !&quot;&quot;.equals(nowNum)">
+            <if test="nowNum != null and !&quot;&quot;.equals(nowNum)">
                 and now_num = #{nowNum}
             </if>
-         
+
         </where>
         LIMIT 1
+        order by id desc
     </select>
     <update id="delete">
         UPDATE image_down_log SET del_flag = 'Y'
@@ -495,10 +506,12 @@
         </if>
     </update>
     <select id="query" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.ImageDownLog">
-        select <include refid="Base_Column_List"/> from image_down_log
+        select
+        <include refid="Base_Column_List"/>
+        from image_down_log
         <where>
             and del_flag = 'N'
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </where>
+        </where>
         order by id desc
     </select>
 </mapper>