|
|
@@ -1,16 +1,17 @@
|
|
|
<?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.QueryConfigMapper" >
|
|
|
- <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.QueryConfig" >
|
|
|
- <id column="id" property="id" jdbcType="INTEGER" />
|
|
|
- <result column="del_flag" property="delFlag" jdbcType="CHAR" />
|
|
|
- <result column="code" property="code" jdbcType="VARCHAR" />
|
|
|
- <result column="table_name" property="tableName" jdbcType="VARCHAR" />
|
|
|
- <result column="tableColumns" property="tablecolumns" jdbcType="VARCHAR" />
|
|
|
- <result column="dataBaseType" property="databasetype" jdbcType="VARCHAR" />
|
|
|
- </resultMap>
|
|
|
- <sql id="Base_Column_List" >
|
|
|
- <trim suffixOverrides="," >
|
|
|
+<mapper namespace="com.izouma.awesomeadmin.dao.QueryConfigMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.QueryConfig">
|
|
|
+ <id column="id" property="id" jdbcType="INTEGER"/>
|
|
|
+ <result column="del_flag" property="delFlag" jdbcType="CHAR"/>
|
|
|
+ <result column="code" property="code" jdbcType="VARCHAR"/>
|
|
|
+ <result column="table_name" property="tableName" jdbcType="VARCHAR"/>
|
|
|
+ <result column="tableColumns" property="tablecolumns" jdbcType="VARCHAR"/>
|
|
|
+ <result column="dataBaseType" property="databasetype" jdbcType="VARCHAR"/>
|
|
|
+ <result column="modules" property="modules" jdbcType="VARCHAR"/>
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ <trim suffixOverrides=",">
|
|
|
id,
|
|
|
|
|
|
del_flag,
|
|
|
@@ -23,115 +24,133 @@
|
|
|
|
|
|
dataBaseType,
|
|
|
|
|
|
- </trim>
|
|
|
+ modules,
|
|
|
+
|
|
|
+ </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 query_config
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</select>
|
|
|
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
delete from query_config
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</delete>
|
|
|
- <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.QueryConfig" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.QueryConfig" useGeneratedKeys="true"
|
|
|
+ keyProperty="id">
|
|
|
insert into query_config
|
|
|
- <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="code!= null" >
|
|
|
+ <if test="code!= null">
|
|
|
code,
|
|
|
</if>
|
|
|
- <if test="tableName!= null" >
|
|
|
+ <if test="tableName!= null">
|
|
|
table_name,
|
|
|
</if>
|
|
|
- <if test="tablecolumns!= null" >
|
|
|
+ <if test="tablecolumns!= null">
|
|
|
tableColumns,
|
|
|
</if>
|
|
|
- <if test="databasetype!= null" >
|
|
|
+ <if test="databasetype!= null">
|
|
|
dataBaseType,
|
|
|
</if>
|
|
|
- </trim>
|
|
|
- <trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
- <if test="id != null" >
|
|
|
+ <if test="modules!= null">
|
|
|
+ modules,
|
|
|
+ </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="code != null" >
|
|
|
+ <if test="code != null">
|
|
|
#{code,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="tableName != null" >
|
|
|
+ <if test="tableName != null">
|
|
|
#{tableName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="tablecolumns != null" >
|
|
|
+ <if test="tablecolumns != null">
|
|
|
#{tablecolumns,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="databasetype != null" >
|
|
|
+ <if test="databasetype != null">
|
|
|
#{databasetype,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- </trim>
|
|
|
+ <if test="modules != null">
|
|
|
+ #{modules,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
</insert>
|
|
|
- <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.QueryConfig" >
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.QueryConfig">
|
|
|
update query_config
|
|
|
- <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="code != null" >
|
|
|
- code= #{code,jdbcType=VARCHAR},
|
|
|
+ <if test="code != null">
|
|
|
+ code= #{code,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="tableName != null" >
|
|
|
- table_name= #{tableName,jdbcType=VARCHAR},
|
|
|
+ <if test="tableName != null">
|
|
|
+ table_name= #{tableName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="tablecolumns != null" >
|
|
|
- tableColumns= #{tablecolumns,jdbcType=VARCHAR},
|
|
|
+ <if test="tablecolumns != null">
|
|
|
+ tableColumns= #{tablecolumns,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="databasetype != null" >
|
|
|
- dataBaseType= #{databasetype,jdbcType=VARCHAR},
|
|
|
+ <if test="databasetype != null">
|
|
|
+ dataBaseType= #{databasetype,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- </set>
|
|
|
+ <if test="modules != null">
|
|
|
+ modules= #{modules,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</update>
|
|
|
- <select id="queryQueryConfigByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.QueryConfig">
|
|
|
- select <include refid="Base_Column_List"/> from query_config
|
|
|
+ <select id="queryQueryConfigByPage" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.QueryConfig">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from query_config
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
- <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>
|
|
|
- <if test="record.delFlag != null and !"".equals(record.delFlag)">
|
|
|
- and del_flag = #{record.delFlag}
|
|
|
+ <if test="record.code != null and !"".equals(record.code)">
|
|
|
+ and code = #{record.code}
|
|
|
</if>
|
|
|
- <if test="record.code != null and !"".equals(record.code)">
|
|
|
- and code = #{record.code}
|
|
|
+ <if test="record.tableName != null and !"".equals(record.tableName)">
|
|
|
+ and table_name = #{record.tableName}
|
|
|
</if>
|
|
|
- <if test="record.tableName != null and !"".equals(record.tableName)">
|
|
|
- and table_name = #{record.tableName}
|
|
|
+ <if test="record.tablecolumns != null and !"".equals(record.tablecolumns)">
|
|
|
+ and tableColumns = #{record.tablecolumns}
|
|
|
</if>
|
|
|
- <if test="record.tablecolumns != null and !"".equals(record.tablecolumns)">
|
|
|
- and tableColumns = #{record.tablecolumns}
|
|
|
+ <if test="record.databasetype != null and !"".equals(record.databasetype)">
|
|
|
+ and dataBaseType = #{record.databasetype}
|
|
|
</if>
|
|
|
- <if test="record.databasetype != null and !"".equals(record.databasetype)">
|
|
|
- and dataBaseType = #{record.databasetype}
|
|
|
+ <if test="record.modules != null and !"".equals(record.modules)">
|
|
|
+ and modules = #{record.modules}
|
|
|
+ </if>
|
|
|
+ <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR code LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR table_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR tableColumns LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR dataBaseType LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ </trim>
|
|
|
</if>
|
|
|
- <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
- <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR code LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR table_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR tableColumns LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR dataBaseType LIKE concat('%',#{record.searchKey},'%')
|
|
|
- </trim>
|
|
|
- </if>
|
|
|
|
|
|
<if test="record.advancedQuery != null and !"".equals(record.advancedQuery)">
|
|
|
<foreach item="item" index="index" collection="record.advancedQuery.split('_;')">
|
|
|
@@ -171,96 +190,107 @@
|
|
|
</where>
|
|
|
order by id desc
|
|
|
</select>
|
|
|
- <select id="queryAllQueryConfig" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.QueryConfig">
|
|
|
- select <include refid="Base_Column_List"/> from query_config
|
|
|
+ <select id="queryAllQueryConfig" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.QueryConfig">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from query_config
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
- <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="code != null and !"".equals(code)">
|
|
|
- and code = #{code}
|
|
|
- </if>
|
|
|
- <if test="tableName != null and !"".equals(tableName)">
|
|
|
- and table_name = #{tableName}
|
|
|
- </if>
|
|
|
- <if test="tablecolumns != null and !"".equals(tablecolumns)">
|
|
|
- and tableColumns = #{tablecolumns}
|
|
|
- </if>
|
|
|
- <if test="databasetype != null and !"".equals(databasetype)">
|
|
|
- and dataBaseType = #{databasetype}
|
|
|
- </if>
|
|
|
- <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
- <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR code LIKE concat('%',#{searchKey},'%')
|
|
|
- OR table_name LIKE concat('%',#{searchKey},'%')
|
|
|
- OR tableColumns LIKE concat('%',#{searchKey},'%')
|
|
|
- OR dataBaseType 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="id != null and !"".equals(id)">
|
|
|
+ and id = #{id}
|
|
|
+ </if>
|
|
|
+ <if test="delFlag != null and !"".equals(delFlag)">
|
|
|
+ and del_flag = #{delFlag}
|
|
|
+ </if>
|
|
|
+ <if test="code != null and !"".equals(code)">
|
|
|
+ and code = #{code}
|
|
|
+ </if>
|
|
|
+ <if test="tableName != null and !"".equals(tableName)">
|
|
|
+ and table_name = #{tableName}
|
|
|
+ </if>
|
|
|
+ <if test="tablecolumns != null and !"".equals(tablecolumns)">
|
|
|
+ and tableColumns = #{tablecolumns}
|
|
|
+ </if>
|
|
|
+ <if test="databasetype != null and !"".equals(databasetype)">
|
|
|
+ and dataBaseType = #{databasetype}
|
|
|
+ </if>
|
|
|
+ <if test="modules != null and !"".equals(modules)">
|
|
|
+ and modules = #{modules}
|
|
|
+ </if>
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR code LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR table_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR tableColumns LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR dataBaseType 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="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>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
+ <if test="detailIndex == 3">
|
|
|
+ #{itemDetail}
|
|
|
+ </if>
|
|
|
|
|
|
- <if test="detailIndex < 3">
|
|
|
- ${itemDetail}
|
|
|
- </if>
|
|
|
+ <if test="detailIndex < 3">
|
|
|
+ ${itemDetail}
|
|
|
+ </if>
|
|
|
|
|
|
- </foreach>
|
|
|
- </otherwise>
|
|
|
- </choose>
|
|
|
+ </foreach>
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
|
|
|
|
|
|
- </foreach>
|
|
|
+ </foreach>
|
|
|
|
|
|
|
|
|
-</if>
|
|
|
+ </if>
|
|
|
</where>
|
|
|
order by id desc
|
|
|
</select>
|
|
|
<select id="queryQueryConfig" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.QueryConfig">
|
|
|
- select <include refid="Base_Column_List"/> from query_config
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from query_config
|
|
|
<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="code != null and !"".equals(code)">
|
|
|
+ <if test="code != null and !"".equals(code)">
|
|
|
and code = #{code}
|
|
|
</if>
|
|
|
- <if test="tableName != null and !"".equals(tableName)">
|
|
|
+ <if test="tableName != null and !"".equals(tableName)">
|
|
|
and table_name = #{tableName}
|
|
|
</if>
|
|
|
- <if test="tablecolumns != null and !"".equals(tablecolumns)">
|
|
|
+ <if test="tablecolumns != null and !"".equals(tablecolumns)">
|
|
|
and tableColumns = #{tablecolumns}
|
|
|
</if>
|
|
|
- <if test="databasetype != null and !"".equals(databasetype)">
|
|
|
+ <if test="databasetype != null and !"".equals(databasetype)">
|
|
|
and dataBaseType = #{databasetype}
|
|
|
</if>
|
|
|
-
|
|
|
+ <if test="modules != null and !"".equals(modules)">
|
|
|
+ and modules = #{modules}
|
|
|
+ </if>
|
|
|
+
|
|
|
</where>
|
|
|
LIMIT 1
|
|
|
</select>
|
|
|
@@ -271,10 +301,12 @@
|
|
|
</where>
|
|
|
</update>
|
|
|
<select id="query" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.QueryConfig">
|
|
|
- select <include refid="Base_Column_List"/> from query_config
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from query_config
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
- </where>
|
|
|
+ </where>
|
|
|
order by id desc
|
|
|
</select>
|
|
|
</mapper>
|