|
|
@@ -0,0 +1,440 @@
|
|
|
+<?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.AppVersionMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.AppVersion">
|
|
|
+ <!--generatedStart-->
|
|
|
+ <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="android_version" property="androidVersion" jdbcType="VARCHAR"/>
|
|
|
+ <result column="android_url" property="androidUrl" jdbcType="VARCHAR"/>
|
|
|
+ <result column="android_size" property="androidSize" jdbcType="VARCHAR"/>
|
|
|
+ <result column="ios_version" property="iosVersion" jdbcType="VARCHAR"/>
|
|
|
+ <result column="ios_url" property="iosUrl" jdbcType="VARCHAR"/>
|
|
|
+ <result column="ios_size" property="iosSize" jdbcType="VARCHAR"/>
|
|
|
+ <!--generatedEnd-->
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ <!--generatedStart-->
|
|
|
+ id, del_flag, update_time, update_user, create_time, create_user, android_version, android_url, android_size, ios_version, ios_url, ios_size <!--generatedEnd-->
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
|
|
|
+ SELECT
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ FROM app_version
|
|
|
+ WHERE id = #{id,jdbcType=INTEGER}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
+ DELETE
|
|
|
+ FROM app_version
|
|
|
+ WHERE id = #{id,jdbcType=INTEGER}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.AppVersion" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ INSERT INTO app_version
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <!--generatedStart-->
|
|
|
+ <if test="id!= null">
|
|
|
+ id,
|
|
|
+ </if>
|
|
|
+ <if test="delFlag!= null">
|
|
|
+ del_flag,
|
|
|
+ </if>
|
|
|
+ <if test="updateTime!= null">
|
|
|
+ update_time,
|
|
|
+ </if>
|
|
|
+ <if test="updateUser!= null">
|
|
|
+ update_user,
|
|
|
+ </if>
|
|
|
+ <if test="createTime!= null">
|
|
|
+ create_time,
|
|
|
+ </if>
|
|
|
+ <if test="createUser!= null">
|
|
|
+ create_user,
|
|
|
+ </if>
|
|
|
+ <if test="androidVersion!= null">
|
|
|
+ android_version,
|
|
|
+ </if>
|
|
|
+ <if test="androidUrl!= null">
|
|
|
+ android_url,
|
|
|
+ </if>
|
|
|
+ <if test="androidSize!= null">
|
|
|
+ android_size,
|
|
|
+ </if>
|
|
|
+ <if test="iosVersion!= null">
|
|
|
+ ios_version,
|
|
|
+ </if>
|
|
|
+ <if test="iosUrl!= null">
|
|
|
+ ios_url,
|
|
|
+ </if>
|
|
|
+ <if test="iosSize!= null">
|
|
|
+ ios_size,
|
|
|
+ </if>
|
|
|
+ <!--generatedEnd-->
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <!--generatedStart-->
|
|
|
+ <if test="id != null">
|
|
|
+ #{id,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="delFlag != null">
|
|
|
+ #{delFlag,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateUser != null">
|
|
|
+ #{updateUser,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="createUser != null">
|
|
|
+ #{createUser,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="androidVersion != null">
|
|
|
+ #{androidVersion,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="androidUrl != null">
|
|
|
+ #{androidUrl,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="androidSize != null">
|
|
|
+ #{androidSize,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="iosVersion != null">
|
|
|
+ #{iosVersion,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="iosUrl != null">
|
|
|
+ #{iosUrl,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="iosSize != null">
|
|
|
+ #{iosSize,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <!--generatedEnd-->
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.AppVersion">
|
|
|
+ UPDATE app_version
|
|
|
+ <set>
|
|
|
+ <!--generatedStart-->
|
|
|
+ <if test="id != null">
|
|
|
+ id= #{id,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="delFlag != null">
|
|
|
+ del_flag= #{delFlag,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ update_time= #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateUser != null">
|
|
|
+ update_user= #{updateUser,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ create_time= #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="createUser != null">
|
|
|
+ create_user= #{createUser,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="androidVersion != null">
|
|
|
+ android_version= #{androidVersion,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="androidUrl != null">
|
|
|
+ android_url= #{androidUrl,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="androidSize != null">
|
|
|
+ android_size= #{androidSize,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="iosVersion != null">
|
|
|
+ ios_version= #{iosVersion,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="iosUrl != null">
|
|
|
+ ios_url= #{iosUrl,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="iosSize != null">
|
|
|
+ ios_size= #{iosSize,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <!--generatedEnd-->
|
|
|
+ </set>
|
|
|
+ WHERE
|
|
|
+ <if test="id != null and !"".equals(id)">
|
|
|
+ id = #{id,jdbcType=INTEGER}
|
|
|
+ </if>
|
|
|
+ <if test="idStr != null and !"".equals(idStr)">
|
|
|
+ id IN (${idStr})
|
|
|
+ </if>
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <select id="queryAppVersionByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.AppVersion">
|
|
|
+ SELECT <include refid="Base_Column_List"/> FROM app_version
|
|
|
+ <where>
|
|
|
+ AND del_flag = 'N'
|
|
|
+ <if test="record.idStr != null and !"".equals(record.idStr)">
|
|
|
+ AND id IN (${record.idStr})
|
|
|
+ </if>
|
|
|
+ <!--generatedStart-->
|
|
|
+ <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>
|
|
|
+ <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>
|
|
|
+ <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>
|
|
|
+ <if test="record.androidVersion != null and !"".equals(record.androidVersion)">
|
|
|
+ AND android_version = #{record.androidVersion}
|
|
|
+ </if>
|
|
|
+ <if test="record.androidUrl != null and !"".equals(record.androidUrl)">
|
|
|
+ AND android_url = #{record.androidUrl}
|
|
|
+ </if>
|
|
|
+ <if test="record.androidSize != null and !"".equals(record.androidSize)">
|
|
|
+ AND android_size = #{record.androidSize}
|
|
|
+ </if>
|
|
|
+ <if test="record.iosVersion != null and !"".equals(record.iosVersion)">
|
|
|
+ AND ios_version = #{record.iosVersion}
|
|
|
+ </if>
|
|
|
+ <if test="record.iosUrl != null and !"".equals(record.iosUrl)">
|
|
|
+ AND ios_url = #{record.iosUrl}
|
|
|
+ </if>
|
|
|
+ <if test="record.iosSize != null and !"".equals(record.iosSize)">
|
|
|
+ AND ios_size = #{record.iosSize}
|
|
|
+ </if>
|
|
|
+ <!--generatedEnd-->
|
|
|
+ <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ <!--generatedStart-->
|
|
|
+ OR android_version LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR android_url LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR android_size LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR ios_version LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR ios_url LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR ios_size LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ <!--generatedEnd-->
|
|
|
+ </trim>
|
|
|
+ </if>
|
|
|
+
|
|
|
+ <if test="record.advancedQuery != null and !"".equals(record.advancedQuery)">
|
|
|
+ <foreach item="item" index="index" collection="record.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>
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
+ <if test="detailIndex == 3">
|
|
|
+ #{itemDetail}
|
|
|
+ </if>
|
|
|
+ <if test="detailIndex < 3">
|
|
|
+ ${itemDetail}
|
|
|
+ </if>
|
|
|
+ </foreach>
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ ORDER BY
|
|
|
+ <if test="record.orderByStr != null and !"".equals(record.orderByStr)">
|
|
|
+ <trim suffixOverrides=",">
|
|
|
+ <foreach item="item" index="index" separator="," collection="record.orderByStr.split('_;')">
|
|
|
+ <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
+ ${itemDetail}
|
|
|
+ </foreach>
|
|
|
+ </foreach>
|
|
|
+ </trim>
|
|
|
+ ,
|
|
|
+ </if>
|
|
|
+ id DESC
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="queryAllAppVersion" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.AppVersion">
|
|
|
+ SELECT <include refid="Base_Column_List"/> FROM app_version
|
|
|
+ <where>
|
|
|
+ AND del_flag = 'N'
|
|
|
+ <if test="idStr != null and !"".equals(idStr)">
|
|
|
+ AND id IN (${idStr})
|
|
|
+ </if>
|
|
|
+ <!--generatedStart-->
|
|
|
+ <if test="id != null and !"".equals(id)">
|
|
|
+ AND id = #{id}
|
|
|
+ </if>
|
|
|
+ <if test="delFlag != null and !"".equals(delFlag)">
|
|
|
+ AND del_flag = #{delFlag}
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null and !"".equals(updateTime)">
|
|
|
+ AND update_time = #{updateTime}
|
|
|
+ </if>
|
|
|
+ <if test="updateUser != null and !"".equals(updateUser)">
|
|
|
+ AND update_user = #{updateUser}
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null and !"".equals(createTime)">
|
|
|
+ AND create_time = #{createTime}
|
|
|
+ </if>
|
|
|
+ <if test="createUser != null and !"".equals(createUser)">
|
|
|
+ AND create_user = #{createUser}
|
|
|
+ </if>
|
|
|
+ <if test="androidVersion != null and !"".equals(androidVersion)">
|
|
|
+ AND android_version = #{androidVersion}
|
|
|
+ </if>
|
|
|
+ <if test="androidUrl != null and !"".equals(androidUrl)">
|
|
|
+ AND android_url = #{androidUrl}
|
|
|
+ </if>
|
|
|
+ <if test="androidSize != null and !"".equals(androidSize)">
|
|
|
+ AND android_size = #{androidSize}
|
|
|
+ </if>
|
|
|
+ <if test="iosVersion != null and !"".equals(iosVersion)">
|
|
|
+ AND ios_version = #{iosVersion}
|
|
|
+ </if>
|
|
|
+ <if test="iosUrl != null and !"".equals(iosUrl)">
|
|
|
+ AND ios_url = #{iosUrl}
|
|
|
+ </if>
|
|
|
+ <if test="iosSize != null and !"".equals(iosSize)">
|
|
|
+ AND ios_size = #{iosSize}
|
|
|
+ </if>
|
|
|
+ <!--generatedEnd-->
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ <!--generatedStart-->
|
|
|
+ OR android_version LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR android_url LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR android_size LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR ios_version LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR ios_url LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR ios_size LIKE concat('%',#{searchKey},'%')
|
|
|
+ <!--generatedEnd-->
|
|
|
+ </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="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>
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ ORDER BY
|
|
|
+ <if test="orderByStr != null and !"".equals(orderByStr)">
|
|
|
+ <trim suffixOverrides=",">
|
|
|
+ <foreach item="item" index="index" separator="," collection="orderByStr.split('_;')">
|
|
|
+ <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
+ ${itemDetail}
|
|
|
+ </foreach>
|
|
|
+ </foreach>
|
|
|
+ </trim>
|
|
|
+ ,
|
|
|
+ </if>
|
|
|
+ id DESC
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="queryAppVersion" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.AppVersion">
|
|
|
+ SELECT <include refid="Base_Column_List"/> FROM app_version
|
|
|
+ <where>
|
|
|
+ AND del_flag = 'N'
|
|
|
+ <!--generatedStart-->
|
|
|
+ <if test="id != null and !"".equals(id)">
|
|
|
+ AND id = #{id}
|
|
|
+ </if>
|
|
|
+ <if test="delFlag != null and !"".equals(delFlag)">
|
|
|
+ AND del_flag = #{delFlag}
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null and !"".equals(updateTime)">
|
|
|
+ AND update_time = #{updateTime}
|
|
|
+ </if>
|
|
|
+ <if test="updateUser != null and !"".equals(updateUser)">
|
|
|
+ AND update_user = #{updateUser}
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null and !"".equals(createTime)">
|
|
|
+ AND create_time = #{createTime}
|
|
|
+ </if>
|
|
|
+ <if test="createUser != null and !"".equals(createUser)">
|
|
|
+ AND create_user = #{createUser}
|
|
|
+ </if>
|
|
|
+ <if test="androidVersion != null and !"".equals(androidVersion)">
|
|
|
+ AND android_version = #{androidVersion}
|
|
|
+ </if>
|
|
|
+ <if test="androidUrl != null and !"".equals(androidUrl)">
|
|
|
+ AND android_url = #{androidUrl}
|
|
|
+ </if>
|
|
|
+ <if test="androidSize != null and !"".equals(androidSize)">
|
|
|
+ AND android_size = #{androidSize}
|
|
|
+ </if>
|
|
|
+ <if test="iosVersion != null and !"".equals(iosVersion)">
|
|
|
+ AND ios_version = #{iosVersion}
|
|
|
+ </if>
|
|
|
+ <if test="iosUrl != null and !"".equals(iosUrl)">
|
|
|
+ AND ios_url = #{iosUrl}
|
|
|
+ </if>
|
|
|
+ <if test="iosSize != null and !"".equals(iosSize)">
|
|
|
+ AND ios_size = #{iosSize}
|
|
|
+ </if>
|
|
|
+ <!--generatedEnd-->
|
|
|
+ </where>
|
|
|
+ LIMIT 1
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <update id="delete">
|
|
|
+ UPDATE app_version SET del_flag = 'Y'
|
|
|
+ WHERE
|
|
|
+ <if test="id != null and !"".equals(id)">
|
|
|
+ id = #{id,jdbcType=INTEGER}
|
|
|
+ </if>
|
|
|
+ <if test="idStr != null and !"".equals(idStr)">
|
|
|
+ id IN (${idStr})
|
|
|
+ </if>
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <select id="query" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.AppVersion">
|
|
|
+ SELECT
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ FROM app_version
|
|
|
+ <where>
|
|
|
+ AND del_flag = 'N'
|
|
|
+ <!--generatedStart-->
|
|
|
+ <!--generatedEnd-->
|
|
|
+ </where>
|
|
|
+ ORDER BY id DESC
|
|
|
+ </select>
|
|
|
+</mapper>
|
|
|
+
|