|
|
@@ -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.CustomerServiceMapper" >
|
|
|
- <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.CustomerService" >
|
|
|
- <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="store_id" property="storeId" jdbcType="VARCHAR" />
|
|
|
- <result column="service_name" property="serviceName" jdbcType="VARCHAR" />
|
|
|
- <result column="password" property="password" jdbcType="VARCHAR" />
|
|
|
- <result column="username" property="username" jdbcType="VARCHAR" />
|
|
|
- <result column="icon" property="icon" jdbcType="VARCHAR" />
|
|
|
- <result column="use_flag" property="useFlag" jdbcType="CHAR" />
|
|
|
- <result column="status_flag" property="statusFlag" jdbcType="INTEGER" />
|
|
|
- <result column="login_time" property="loginTime" jdbcType="TIMESTAMP" />
|
|
|
- </resultMap>
|
|
|
- <sql id="Base_Column_List" >
|
|
|
- <trim suffixOverrides="," >
|
|
|
+<mapper namespace="com.izouma.awesomeadmin.dao.CustomerServiceMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
+ <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="store_id" property="storeId" jdbcType="VARCHAR"/>
|
|
|
+ <result column="service_name" property="serviceName" jdbcType="VARCHAR"/>
|
|
|
+ <result column="password" property="password" jdbcType="VARCHAR"/>
|
|
|
+ <result column="username" property="username" jdbcType="VARCHAR"/>
|
|
|
+ <result column="icon" property="icon" jdbcType="VARCHAR"/>
|
|
|
+ <result column="use_flag" property="useFlag" jdbcType="CHAR"/>
|
|
|
+ <result column="status_flag" property="statusFlag" jdbcType="INTEGER"/>
|
|
|
+ <result column="login_time" property="loginTime" jdbcType="TIMESTAMP"/>
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ <trim suffixOverrides=",">
|
|
|
id,
|
|
|
|
|
|
del_flag,
|
|
|
@@ -47,155 +47,156 @@
|
|
|
|
|
|
login_time,
|
|
|
|
|
|
- </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 customer_service
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</select>
|
|
|
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
delete from customer_service
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</delete>
|
|
|
- <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.CustomerService" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.CustomerService" useGeneratedKeys="true"
|
|
|
+ keyProperty="id">
|
|
|
insert into customer_service
|
|
|
- <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="storeId!= null" >
|
|
|
+ <if test="storeId!= null">
|
|
|
store_id,
|
|
|
</if>
|
|
|
- <if test="serviceName!= null" >
|
|
|
+ <if test="serviceName!= null">
|
|
|
service_name,
|
|
|
</if>
|
|
|
- <if test="password!= null" >
|
|
|
+ <if test="password!= null">
|
|
|
password,
|
|
|
</if>
|
|
|
- <if test="username!= null" >
|
|
|
+ <if test="username!= null">
|
|
|
username,
|
|
|
</if>
|
|
|
- <if test="icon!= null" >
|
|
|
+ <if test="icon!= null">
|
|
|
icon,
|
|
|
</if>
|
|
|
- <if test="useFlag!= null" >
|
|
|
+ <if test="useFlag!= null">
|
|
|
use_flag,
|
|
|
</if>
|
|
|
- <if test="statusFlag!= null" >
|
|
|
+ <if test="statusFlag!= null">
|
|
|
status_flag,
|
|
|
</if>
|
|
|
- <if test="loginTime!= null" >
|
|
|
+ <if test="loginTime!= null">
|
|
|
login_time,
|
|
|
</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="storeId != null" >
|
|
|
+ <if test="storeId != null">
|
|
|
#{storeId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="serviceName != null" >
|
|
|
+ <if test="serviceName != null">
|
|
|
#{serviceName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="password != null" >
|
|
|
+ <if test="password != null">
|
|
|
#{password,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="username != null" >
|
|
|
+ <if test="username != null">
|
|
|
#{username,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="icon != null" >
|
|
|
+ <if test="icon != null">
|
|
|
#{icon,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="useFlag != null" >
|
|
|
+ <if test="useFlag != null">
|
|
|
#{useFlag,jdbcType=CHAR},
|
|
|
</if>
|
|
|
- <if test="statusFlag != null" >
|
|
|
+ <if test="statusFlag != null">
|
|
|
#{statusFlag,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
- <if test="loginTime != null" >
|
|
|
+ <if test="loginTime != null">
|
|
|
#{loginTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
- </trim>
|
|
|
+ </trim>
|
|
|
</insert>
|
|
|
- <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.CustomerService" >
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
update customer_service
|
|
|
- <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="storeId != null" >
|
|
|
- store_id= #{storeId,jdbcType=VARCHAR},
|
|
|
+ <if test="storeId != null">
|
|
|
+ store_id= #{storeId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="serviceName != null" >
|
|
|
- service_name= #{serviceName,jdbcType=VARCHAR},
|
|
|
+ <if test="serviceName != null">
|
|
|
+ service_name= #{serviceName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="password != null" >
|
|
|
- password= #{password,jdbcType=VARCHAR},
|
|
|
+ <if test="password != null">
|
|
|
+ password= #{password,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="username != null" >
|
|
|
- username= #{username,jdbcType=VARCHAR},
|
|
|
+ <if test="username != null">
|
|
|
+ username= #{username,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="icon != null" >
|
|
|
- icon= #{icon,jdbcType=VARCHAR},
|
|
|
+ <if test="icon != null">
|
|
|
+ icon= #{icon,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="useFlag != null" >
|
|
|
- use_flag= #{useFlag,jdbcType=CHAR},
|
|
|
+ <if test="useFlag != null">
|
|
|
+ use_flag= #{useFlag,jdbcType=CHAR},
|
|
|
</if>
|
|
|
- <if test="statusFlag != null" >
|
|
|
- status_flag= #{statusFlag,jdbcType=INTEGER},
|
|
|
+ <if test="statusFlag != null">
|
|
|
+ status_flag= #{statusFlag,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
- <if test="loginTime != null" >
|
|
|
- login_time= #{loginTime,jdbcType=TIMESTAMP},
|
|
|
+ <if test="loginTime != null">
|
|
|
+ login_time= #{loginTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
- </set>
|
|
|
+ </set>
|
|
|
where
|
|
|
<if test="id != null and !"".equals(id)">
|
|
|
id = #{id,jdbcType=INTEGER}
|
|
|
@@ -206,67 +207,70 @@
|
|
|
</if>
|
|
|
|
|
|
</update>
|
|
|
- <select id="queryCustomerServiceByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
- select <include refid="Base_Column_List"/> from customer_service
|
|
|
+ <select id="queryCustomerServiceByPage" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from customer_service
|
|
|
<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.storeId != null and !"".equals(record.storeId)">
|
|
|
- and store_id = #{record.storeId}
|
|
|
+ <if test="record.storeId != null and !"".equals(record.storeId)">
|
|
|
+ and store_id = #{record.storeId}
|
|
|
</if>
|
|
|
- <if test="record.serviceName != null and !"".equals(record.serviceName)">
|
|
|
- and service_name = #{record.serviceName}
|
|
|
+ <if test="record.serviceName != null and !"".equals(record.serviceName)">
|
|
|
+ and service_name = #{record.serviceName}
|
|
|
</if>
|
|
|
- <if test="record.password != null and !"".equals(record.password)">
|
|
|
- and password = #{record.password}
|
|
|
+ <if test="record.password != null and !"".equals(record.password)">
|
|
|
+ and password = #{record.password}
|
|
|
</if>
|
|
|
- <if test="record.username != null and !"".equals(record.username)">
|
|
|
- and username = #{record.username}
|
|
|
+ <if test="record.username != null and !"".equals(record.username)">
|
|
|
+ and username = #{record.username}
|
|
|
</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.useFlag != null and !"".equals(record.useFlag)">
|
|
|
- and use_flag = #{record.useFlag}
|
|
|
+ <if test="record.useFlag != null and !"".equals(record.useFlag)">
|
|
|
+ and use_flag = #{record.useFlag}
|
|
|
</if>
|
|
|
- <if test="record.statusFlag != null and !"".equals(record.statusFlag)">
|
|
|
- and status_flag = #{record.statusFlag}
|
|
|
+ <if test="record.statusFlag != null and !"".equals(record.statusFlag)">
|
|
|
+ and status_flag = #{record.statusFlag}
|
|
|
</if>
|
|
|
- <if test="record.loginTime != null and !"".equals(record.loginTime)">
|
|
|
- and login_time = #{record.loginTime}
|
|
|
+ <if test="record.loginTime != null and !"".equals(record.loginTime)">
|
|
|
+ and login_time = #{record.loginTime}
|
|
|
+ </if>
|
|
|
+ <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR store_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR service_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR password LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR username LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR icon LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR use_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR status_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR login_time LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ </trim>
|
|
|
</if>
|
|
|
- <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
- <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR store_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR service_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR password LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR username LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR icon LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR use_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR status_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
- OR login_time LIKE concat('%',#{record.searchKey},'%')
|
|
|
- </trim>
|
|
|
- </if>
|
|
|
|
|
|
<if test="record.advancedQuery != null and !"".equals(record.advancedQuery)">
|
|
|
<foreach item="item" index="index" collection="record.advancedQuery.split('_;')">
|
|
|
@@ -320,101 +324,104 @@
|
|
|
</if>
|
|
|
id desc
|
|
|
</select>
|
|
|
- <select id="queryAllCustomerService" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
- select <include refid="Base_Column_List"/> from customer_service
|
|
|
+ <select id="queryAllCustomerService" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from customer_service
|
|
|
<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="storeId != null and !"".equals(storeId)">
|
|
|
- and store_id = #{storeId}
|
|
|
+ <if test="storeId != null and !"".equals(storeId)">
|
|
|
+ and store_id = #{storeId}
|
|
|
</if>
|
|
|
- <if test="serviceName != null and !"".equals(serviceName)">
|
|
|
- and service_name = #{serviceName}
|
|
|
+ <if test="serviceName != null and !"".equals(serviceName)">
|
|
|
+ and service_name = #{serviceName}
|
|
|
</if>
|
|
|
- <if test="password != null and !"".equals(password)">
|
|
|
- and password = #{password}
|
|
|
+ <if test="password != null and !"".equals(password)">
|
|
|
+ and password = #{password}
|
|
|
</if>
|
|
|
- <if test="username != null and !"".equals(username)">
|
|
|
- and username = #{username}
|
|
|
+ <if test="username != null and !"".equals(username)">
|
|
|
+ and username = #{username}
|
|
|
</if>
|
|
|
- <if test="icon != null and !"".equals(icon)">
|
|
|
- and icon = #{icon}
|
|
|
+ <if test="icon != null and !"".equals(icon)">
|
|
|
+ and icon = #{icon}
|
|
|
</if>
|
|
|
- <if test="useFlag != null and !"".equals(useFlag)">
|
|
|
- and use_flag = #{useFlag}
|
|
|
+ <if test="useFlag != null and !"".equals(useFlag)">
|
|
|
+ and use_flag = #{useFlag}
|
|
|
</if>
|
|
|
- <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
- and status_flag = #{statusFlag}
|
|
|
+ <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
+ and status_flag = #{statusFlag}
|
|
|
</if>
|
|
|
- <if test="loginTime != null and !"".equals(loginTime)">
|
|
|
- and login_time = #{loginTime}
|
|
|
+ <if test="loginTime != null and !"".equals(loginTime)">
|
|
|
+ and login_time = #{loginTime}
|
|
|
</if>
|
|
|
- <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
- <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
- OR store_id LIKE concat('%',#{searchKey},'%')
|
|
|
- OR service_name LIKE concat('%',#{searchKey},'%')
|
|
|
- OR password LIKE concat('%',#{searchKey},'%')
|
|
|
- OR username LIKE concat('%',#{searchKey},'%')
|
|
|
- OR icon LIKE concat('%',#{searchKey},'%')
|
|
|
- OR use_flag LIKE concat('%',#{searchKey},'%')
|
|
|
- OR status_flag LIKE concat('%',#{searchKey},'%')
|
|
|
- OR login_time LIKE concat('%',#{searchKey},'%')
|
|
|
- </trim>
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR store_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR service_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR password LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR username LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR icon LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR use_flag LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR status_flag LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR login_time LIKE concat('%',#{searchKey},'%')
|
|
|
+ </trim>
|
|
|
</if>
|
|
|
-<if test="advancedQuery != null and !"".equals(advancedQuery)">
|
|
|
- <foreach item="item" index="index" collection="advancedQuery.split('_;')">
|
|
|
- <choose>
|
|
|
- <when test="item.indexOf('like') != -1">
|
|
|
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
- <if test="detailIndex == 3">
|
|
|
- concat('%',#{itemDetail},'%')
|
|
|
- </if>
|
|
|
+ <if test="advancedQuery != null and !"".equals(advancedQuery)">
|
|
|
+ <foreach item="item" index="index" collection="advancedQuery.split('_;')">
|
|
|
+ <choose>
|
|
|
+ <when test="item.indexOf('like') != -1">
|
|
|
+ <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
+ <if test="detailIndex == 3">
|
|
|
+ concat('%',#{itemDetail},'%')
|
|
|
+ </if>
|
|
|
|
|
|
- <if test="detailIndex < 3">
|
|
|
- ${itemDetail}
|
|
|
- </if>
|
|
|
+ <if test="detailIndex < 3">
|
|
|
+ ${itemDetail}
|
|
|
+ </if>
|
|
|
|
|
|
- </foreach>
|
|
|
- </when>
|
|
|
- <otherwise>
|
|
|
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
- <if test="detailIndex == 3">
|
|
|
- #{itemDetail}
|
|
|
- </if>
|
|
|
-
|
|
|
- <if test="detailIndex < 3">
|
|
|
- ${itemDetail}
|
|
|
- </if>
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ <otherwise>
|
|
|
+ <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
|
|
|
+ <if test="detailIndex == 3">
|
|
|
+ #{itemDetail}
|
|
|
+ </if>
|
|
|
|
|
|
- </foreach>
|
|
|
- </otherwise>
|
|
|
- </choose>
|
|
|
+ <if test="detailIndex < 3">
|
|
|
+ ${itemDetail}
|
|
|
+ </if>
|
|
|
|
|
|
+ </foreach>
|
|
|
+ </otherwise>
|
|
|
+ </choose>
|
|
|
|
|
|
- </foreach>
|
|
|
|
|
|
+ </foreach>
|
|
|
|
|
|
-</if>
|
|
|
+
|
|
|
+ </if>
|
|
|
</where>
|
|
|
order by
|
|
|
|
|
|
@@ -433,53 +440,56 @@
|
|
|
|
|
|
id desc
|
|
|
</select>
|
|
|
- <select id="queryCustomerService" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
- select <include refid="Base_Column_List"/> from customer_service
|
|
|
+ <select id="queryCustomerService" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from customer_service
|
|
|
<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="storeId != null and !"".equals(storeId)">
|
|
|
+ <if test="storeId != null and !"".equals(storeId)">
|
|
|
and store_id = #{storeId}
|
|
|
</if>
|
|
|
- <if test="serviceName != null and !"".equals(serviceName)">
|
|
|
+ <if test="serviceName != null and !"".equals(serviceName)">
|
|
|
and service_name = #{serviceName}
|
|
|
</if>
|
|
|
- <if test="password != null and !"".equals(password)">
|
|
|
+ <if test="password != null and !"".equals(password)">
|
|
|
and password = #{password}
|
|
|
</if>
|
|
|
- <if test="username != null and !"".equals(username)">
|
|
|
+ <if test="username != null and !"".equals(username)">
|
|
|
and username = #{username}
|
|
|
</if>
|
|
|
- <if test="icon != null and !"".equals(icon)">
|
|
|
+ <if test="icon != null and !"".equals(icon)">
|
|
|
and icon = #{icon}
|
|
|
</if>
|
|
|
- <if test="useFlag != null and !"".equals(useFlag)">
|
|
|
+ <if test="useFlag != null and !"".equals(useFlag)">
|
|
|
and use_flag = #{useFlag}
|
|
|
</if>
|
|
|
- <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
+ <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
and status_flag = #{statusFlag}
|
|
|
</if>
|
|
|
- <if test="loginTime != null and !"".equals(loginTime)">
|
|
|
+ <if test="loginTime != null and !"".equals(loginTime)">
|
|
|
and login_time = #{loginTime}
|
|
|
</if>
|
|
|
-
|
|
|
+
|
|
|
</where>
|
|
|
LIMIT 1
|
|
|
</select>
|
|
|
@@ -495,11 +505,28 @@
|
|
|
</if>
|
|
|
</update>
|
|
|
<select id="query" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
- select <include refid="Base_Column_List"/> from customer_service
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from customer_service
|
|
|
<where>
|
|
|
and del_flag = 'N'
|
|
|
- </where>
|
|
|
+ </where>
|
|
|
order by id desc
|
|
|
</select>
|
|
|
+ <select id="getRecentlyLoginList" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.CustomerService">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from customer_service
|
|
|
+ <where>
|
|
|
+ and del_flag = 'N'
|
|
|
+ and use_flag = 'Y'
|
|
|
+ <if test="storeId != null and !"".equals(storeId)">
|
|
|
+ and store_id = #{storeId}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ order by login_time desc
|
|
|
+ LIMIT 3
|
|
|
+ </select>
|
|
|
</mapper>
|
|
|
|