|
|
@@ -1,23 +1,23 @@
|
|
|
<?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.LandmarkTypeMapper" >
|
|
|
- <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.LandmarkType" >
|
|
|
- <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="type_flag" property="typeFlag" jdbcType="VARCHAR" />
|
|
|
- <result column="type_name" property="typeName" jdbcType="VARCHAR" />
|
|
|
- <result column="area_name" property="areaName" jdbcType="VARCHAR" />
|
|
|
- <result column="thing_name" property="thingName" jdbcType="VARCHAR" />
|
|
|
- <result column="icon" property="icon" jdbcType="VARCHAR" />
|
|
|
- <result column="remark" property="remark" jdbcType="VARCHAR" />
|
|
|
- <result column="power" property="power" jdbcType="VARCHAR" />
|
|
|
- </resultMap>
|
|
|
- <sql id="Base_Column_List" >
|
|
|
- <trim suffixOverrides="," >
|
|
|
+<mapper namespace="com.izouma.awesomeadmin.dao.LandmarkTypeMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.LandmarkType">
|
|
|
+ <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="type_flag" property="typeFlag" jdbcType="VARCHAR"/>
|
|
|
+ <result column="type_name" property="typeName" jdbcType="VARCHAR"/>
|
|
|
+ <result column="area_name" property="areaName" jdbcType="VARCHAR"/>
|
|
|
+ <result column="thing_name" property="thingName" jdbcType="VARCHAR"/>
|
|
|
+ <result column="icon" property="icon" jdbcType="VARCHAR"/>
|
|
|
+ <result column="remark" property="remark" jdbcType="VARCHAR"/>
|
|
|
+ <result column="power" property="power" jdbcType="VARCHAR"/>
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ <trim suffixOverrides=",">
|
|
|
id,
|
|
|
|
|
|
del_flag,
|
|
|
@@ -44,146 +44,147 @@
|
|
|
|
|
|
power,
|
|
|
|
|
|
- </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 landmark_type
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</select>
|
|
|
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
delete from landmark_type
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</delete>
|
|
|
- <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.LandmarkType" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.LandmarkType" useGeneratedKeys="true"
|
|
|
+ keyProperty="id">
|
|
|
insert into landmark_type
|
|
|
- <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="typeFlag!= null" >
|
|
|
+ <if test="typeFlag!= null">
|
|
|
type_flag,
|
|
|
</if>
|
|
|
- <if test="typeName!= null" >
|
|
|
+ <if test="typeName!= null">
|
|
|
type_name,
|
|
|
</if>
|
|
|
- <if test="areaName!= null" >
|
|
|
+ <if test="areaName!= null">
|
|
|
area_name,
|
|
|
</if>
|
|
|
- <if test="thingName!= null" >
|
|
|
+ <if test="thingName!= null">
|
|
|
thing_name,
|
|
|
</if>
|
|
|
- <if test="icon!= null" >
|
|
|
+ <if test="icon!= null">
|
|
|
icon,
|
|
|
</if>
|
|
|
- <if test="remark!= null" >
|
|
|
+ <if test="remark!= null">
|
|
|
remark,
|
|
|
</if>
|
|
|
- <if test="power!= null" >
|
|
|
+ <if test="power!= null">
|
|
|
power,
|
|
|
</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="typeFlag != null" >
|
|
|
+ <if test="typeFlag != null">
|
|
|
#{typeFlag,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="typeName != null" >
|
|
|
+ <if test="typeName != null">
|
|
|
#{typeName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="areaName != null" >
|
|
|
+ <if test="areaName != null">
|
|
|
#{areaName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="thingName != null" >
|
|
|
+ <if test="thingName != null">
|
|
|
#{thingName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="icon != null" >
|
|
|
+ <if test="icon != null">
|
|
|
#{icon,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="remark != null" >
|
|
|
+ <if test="remark != null">
|
|
|
#{remark,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="power != null" >
|
|
|
+ <if test="power != null">
|
|
|
#{power,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- </trim>
|
|
|
+ </trim>
|
|
|
</insert>
|
|
|
- <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.LandmarkType" >
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.LandmarkType">
|
|
|
update landmark_type
|
|
|
- <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="typeFlag != null" >
|
|
|
- type_flag= #{typeFlag,jdbcType=VARCHAR},
|
|
|
+ <if test="typeFlag != null">
|
|
|
+ type_flag= #{typeFlag,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="typeName != null" >
|
|
|
- type_name= #{typeName,jdbcType=VARCHAR},
|
|
|
+ <if test="typeName != null">
|
|
|
+ type_name= #{typeName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="areaName != null" >
|
|
|
- area_name= #{areaName,jdbcType=VARCHAR},
|
|
|
+ <if test="areaName != null">
|
|
|
+ area_name= #{areaName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="thingName != null" >
|
|
|
- thing_name= #{thingName,jdbcType=VARCHAR},
|
|
|
+ <if test="thingName != null">
|
|
|
+ thing_name= #{thingName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="icon != null" >
|
|
|
- icon= #{icon,jdbcType=VARCHAR},
|
|
|
+ <if test="icon != null">
|
|
|
+ icon= #{icon,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="remark != null" >
|
|
|
- remark= #{remark,jdbcType=VARCHAR},
|
|
|
+ <if test="remark != null">
|
|
|
+ remark= #{remark,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="power != null" >
|
|
|
- power= #{power,jdbcType=VARCHAR},
|
|
|
+ <if test="power != null">
|
|
|
+ power= #{power,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- </set>
|
|
|
+ </set>
|
|
|
where
|
|
|
<if test="id != null and !"".equals(id)">
|
|
|
id = #{id,jdbcType=INTEGER}
|
|
|
@@ -194,62 +195,65 @@
|
|
|
</if>
|
|
|
|
|
|
</update>
|
|
|
- <select id="queryLandmarkTypeByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.LandmarkType">
|
|
|
- select <include refid="Base_Column_List"/> from landmark_type
|
|
|
+ <select id="queryLandmarkTypeByPage" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.LandmarkType">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from landmark_type
|
|
|
<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.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.typeName != null and !"".equals(record.typeName)">
|
|
|
- and type_name = #{record.typeName}
|
|
|
+ <if test="record.typeName != null and !"".equals(record.typeName)">
|
|
|
+ and type_name = #{record.typeName}
|
|
|
</if>
|
|
|
- <if test="record.areaName != null and !"".equals(record.areaName)">
|
|
|
- and area_name = #{record.areaName}
|
|
|
+ <if test="record.areaName != null and !"".equals(record.areaName)">
|
|
|
+ and area_name = #{record.areaName}
|
|
|
</if>
|
|
|
- <if test="record.thingName != null and !"".equals(record.thingName)">
|
|
|
- and thing_name = #{record.thingName}
|
|
|
+ <if test="record.thingName != null and !"".equals(record.thingName)">
|
|
|
+ and thing_name = #{record.thingName}
|
|
|
</if>
|
|
|
- <if test="record.icon != null and !"".equals(record.icon)">
|
|
|
- and icon = #{record.icon}
|
|
|
+ <if test="record.icon != null and !"".equals(record.icon)">
|
|
|
+ and icon = #{record.icon}
|
|
|
</if>
|
|
|
- <if test="record.remark != null and !"".equals(record.remark)">
|
|
|
- and remark = #{record.remark}
|
|
|
+ <if test="record.remark != null and !"".equals(record.remark)">
|
|
|
+ and remark = #{record.remark}
|
|
|
</if>
|
|
|
- <if test="record.power != null and !"".equals(record.power)">
|
|
|
- and power = #{record.power}
|
|
|
+ <if test="record.power != null and !"".equals(record.power)">
|
|
|
+ and power = #{record.power}
|
|
|
+ </if>
|
|
|
+ <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR type_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR type_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR area_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR thing_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR icon LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR remark LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ </trim>
|
|
|
</if>
|
|
|
- <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
- <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR type_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR type_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR area_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR thing_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR icon LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR remark LIKE concat('%',#{record.searchKey},'%')
|
|
|
- </trim>
|
|
|
- </if>
|
|
|
|
|
|
<if test="record.advancedQuery != null and !"".equals(record.advancedQuery)">
|
|
|
<foreach item="item" index="index" collection="record.advancedQuery.split('_;')">
|
|
|
@@ -303,96 +307,210 @@
|
|
|
</if>
|
|
|
id desc
|
|
|
</select>
|
|
|
- <select id="queryAllLandmarkType" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.LandmarkType">
|
|
|
- select <include refid="Base_Column_List"/> from landmark_type
|
|
|
+ <select id="queryAllLandmarkType" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.LandmarkType">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from landmark_type
|
|
|
<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="typeFlag != null and !"".equals(typeFlag)">
|
|
|
- and type_flag = #{typeFlag}
|
|
|
+ <if test="typeFlag != null and !"".equals(typeFlag)">
|
|
|
+ and type_flag = #{typeFlag}
|
|
|
</if>
|
|
|
- <if test="typeName != null and !"".equals(typeName)">
|
|
|
- and type_name = #{typeName}
|
|
|
+ <if test="typeName != null and !"".equals(typeName)">
|
|
|
+ and type_name = #{typeName}
|
|
|
</if>
|
|
|
- <if test="areaName != null and !"".equals(areaName)">
|
|
|
- and area_name = #{areaName}
|
|
|
+ <if test="areaName != null and !"".equals(areaName)">
|
|
|
+ and area_name = #{areaName}
|
|
|
</if>
|
|
|
- <if test="thingName != null and !"".equals(thingName)">
|
|
|
- and thing_name = #{thingName}
|
|
|
+ <if test="thingName != null and !"".equals(thingName)">
|
|
|
+ and thing_name = #{thingName}
|
|
|
</if>
|
|
|
- <if test="icon != null and !"".equals(icon)">
|
|
|
- and icon = #{icon}
|
|
|
+ <if test="icon != null and !"".equals(icon)">
|
|
|
+ and icon = #{icon}
|
|
|
</if>
|
|
|
- <if test="remark != null and !"".equals(remark)">
|
|
|
- and remark = #{remark}
|
|
|
+ <if test="remark != null and !"".equals(remark)">
|
|
|
+ and remark = #{remark}
|
|
|
</if>
|
|
|
- <if test="power != null and !"".equals(power)">
|
|
|
- and power = #{power}
|
|
|
+ <if test="power != null and !"".equals(power)">
|
|
|
+ and power = #{power}
|
|
|
</if>
|
|
|
- <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
- <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR type_flag LIKE concat('%',#{searchKey},'%')
|
|
|
- OR type_name LIKE concat('%',#{searchKey},'%')
|
|
|
- OR area_name LIKE concat('%',#{searchKey},'%')
|
|
|
- OR thing_name LIKE concat('%',#{searchKey},'%')
|
|
|
- OR icon LIKE concat('%',#{searchKey},'%')
|
|
|
- OR remark LIKE concat('%',#{searchKey},'%')
|
|
|
- </trim>
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR type_flag LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR type_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR area_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR thing_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR icon LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR remark 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>
|
|
|
+
|
|
|
+ </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>
|
|
|
|
|
|
- <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>
|
|
|
+ </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>
|
|
|
- </otherwise>
|
|
|
- </choose>
|
|
|
+ </trim>
|
|
|
+ ,
|
|
|
+ </if>
|
|
|
|
|
|
+ id desc
|
|
|
+ </select>
|
|
|
+ <select id="queryAllLandmarkTypeAllArea" parameterType="java.util.Map"
|
|
|
+ resultMap="AllAreaResultMap">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from landmark_type
|
|
|
+ <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>
|
|
|
+ <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="typeFlag != null and !"".equals(typeFlag)">
|
|
|
+ and type_flag = #{typeFlag}
|
|
|
+ </if>
|
|
|
+ <if test="typeName != null and !"".equals(typeName)">
|
|
|
+ and type_name = #{typeName}
|
|
|
+ </if>
|
|
|
+ <if test="areaName != null and !"".equals(areaName)">
|
|
|
+ and area_name = #{areaName}
|
|
|
+ </if>
|
|
|
+ <if test="thingName != null and !"".equals(thingName)">
|
|
|
+ and thing_name = #{thingName}
|
|
|
+ </if>
|
|
|
+ <if test="icon != null and !"".equals(icon)">
|
|
|
+ and icon = #{icon}
|
|
|
+ </if>
|
|
|
+ <if test="remark != null and !"".equals(remark)">
|
|
|
+ and remark = #{remark}
|
|
|
+ </if>
|
|
|
+ <if test="power != null and !"".equals(power)">
|
|
|
+ and power = #{power}
|
|
|
+ </if>
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR type_flag LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR type_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR area_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR thing_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR icon LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR remark 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>
|
|
|
|
|
|
- </foreach>
|
|
|
+ <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>
|
|
|
+ </foreach>
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
+
|
|
|
+
|
|
|
+ </foreach>
|
|
|
+
|
|
|
+
|
|
|
+ </if>
|
|
|
</where>
|
|
|
order by
|
|
|
|
|
|
@@ -411,50 +529,53 @@
|
|
|
|
|
|
id desc
|
|
|
</select>
|
|
|
- <select id="queryLandmarkType" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.LandmarkType">
|
|
|
- select <include refid="Base_Column_List"/> from landmark_type
|
|
|
+ <select id="queryLandmarkType" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.LandmarkType">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from landmark_type
|
|
|
<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="typeFlag != null and !"".equals(typeFlag)">
|
|
|
+ <if test="typeFlag != null and !"".equals(typeFlag)">
|
|
|
and type_flag = #{typeFlag}
|
|
|
</if>
|
|
|
- <if test="typeName != null and !"".equals(typeName)">
|
|
|
+ <if test="typeName != null and !"".equals(typeName)">
|
|
|
and type_name = #{typeName}
|
|
|
</if>
|
|
|
- <if test="areaName != null and !"".equals(areaName)">
|
|
|
+ <if test="areaName != null and !"".equals(areaName)">
|
|
|
and area_name = #{areaName}
|
|
|
</if>
|
|
|
- <if test="thingName != null and !"".equals(thingName)">
|
|
|
+ <if test="thingName != null and !"".equals(thingName)">
|
|
|
and thing_name = #{thingName}
|
|
|
</if>
|
|
|
- <if test="icon != null and !"".equals(icon)">
|
|
|
+ <if test="icon != null and !"".equals(icon)">
|
|
|
and icon = #{icon}
|
|
|
</if>
|
|
|
- <if test="remark != null and !"".equals(remark)">
|
|
|
+ <if test="remark != null and !"".equals(remark)">
|
|
|
and remark = #{remark}
|
|
|
</if>
|
|
|
- <if test="power != null and !"".equals(power)">
|
|
|
+ <if test="power != null and !"".equals(power)">
|
|
|
and power = #{power}
|
|
|
</if>
|
|
|
-
|
|
|
+
|
|
|
</where>
|
|
|
LIMIT 1
|
|
|
</select>
|
|
|
@@ -470,11 +591,23 @@
|
|
|
</if>
|
|
|
</update>
|
|
|
<select id="query" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.LandmarkType">
|
|
|
- select <include refid="Base_Column_List"/> from landmark_type
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from landmark_type
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
- </where>
|
|
|
+ </where>
|
|
|
order by id desc
|
|
|
</select>
|
|
|
+
|
|
|
+ <resultMap id="AllAreaResultMap" type="com.izouma.awesomeadmin.model.LandmarkType" extends="BaseResultMap">
|
|
|
+
|
|
|
+ <collection property="areaInfoList" ofType="com.izouma.awesomeadmin.model.AreaInfo"
|
|
|
+ select="com.izouma.awesomeadmin.dao.AreaInfoMapper.queryAllAreaInfo"
|
|
|
+ column="{areaType = id}">
|
|
|
+ </collection>
|
|
|
+
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
</mapper>
|
|
|
|