|
|
@@ -0,0 +1,505 @@
|
|
|
+<?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.AimPlacePositionLevelMapper" >
|
|
|
+ <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.AimPlacePositionLevel" >
|
|
|
+ <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="name" property="name" jdbcType="VARCHAR" />
|
|
|
+ <result column="owned_land_mark_id" property="ownedLandMarkId" jdbcType="VARCHAR" />
|
|
|
+ <result column="front_level_id" property="frontLevelId" jdbcType="VARCHAR" />
|
|
|
+ <result column="aim_place_position_id" property="aimPlacePositionId" jdbcType="VARCHAR" />
|
|
|
+ <result column="top_level" property="topLevel" jdbcType="VARCHAR" />
|
|
|
+ <result column="remark1" property="remark1" jdbcType="VARCHAR" />
|
|
|
+ <result column="remark2" property="remark2" jdbcType="VARCHAR" />
|
|
|
+ <result column="remark3" property="remark3" jdbcType="VARCHAR" />
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List" >
|
|
|
+ <trim suffixOverrides="," >
|
|
|
+ id,
|
|
|
+
|
|
|
+ del_flag,
|
|
|
+
|
|
|
+ update_time,
|
|
|
+
|
|
|
+ update_user,
|
|
|
+
|
|
|
+ create_time,
|
|
|
+
|
|
|
+ create_user,
|
|
|
+
|
|
|
+ name,
|
|
|
+
|
|
|
+ owned_land_mark_id,
|
|
|
+
|
|
|
+ front_level_id,
|
|
|
+
|
|
|
+ aim_place_position_id,
|
|
|
+
|
|
|
+ top_level,
|
|
|
+
|
|
|
+ remark1,
|
|
|
+
|
|
|
+ remark2,
|
|
|
+
|
|
|
+ remark3,
|
|
|
+
|
|
|
+ </trim>
|
|
|
+ </sql>
|
|
|
+ <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from aim_place_position_level
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </select>
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
|
|
+ delete from aim_place_position_level
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </delete>
|
|
|
+ <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.AimPlacePositionLevel" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into aim_place_position_level
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides="," >
|
|
|
+ <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="name!= null" >
|
|
|
+ name,
|
|
|
+ </if>
|
|
|
+ <if test="ownedLandMarkId!= null" >
|
|
|
+ owned_land_mark_id,
|
|
|
+ </if>
|
|
|
+ <if test="frontLevelId!= null" >
|
|
|
+ front_level_id,
|
|
|
+ </if>
|
|
|
+ <if test="aimPlacePositionId!= null" >
|
|
|
+ aim_place_position_id,
|
|
|
+ </if>
|
|
|
+ <if test="topLevel!= null" >
|
|
|
+ top_level,
|
|
|
+ </if>
|
|
|
+ <if test="remark1!= null" >
|
|
|
+ remark1,
|
|
|
+ </if>
|
|
|
+ <if test="remark2!= null" >
|
|
|
+ remark2,
|
|
|
+ </if>
|
|
|
+ <if test="remark3!= null" >
|
|
|
+ remark3,
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
+ <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="name != null" >
|
|
|
+ #{name,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="ownedLandMarkId != null" >
|
|
|
+ #{ownedLandMarkId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="frontLevelId != null" >
|
|
|
+ #{frontLevelId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="aimPlacePositionId != null" >
|
|
|
+ #{aimPlacePositionId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="topLevel != null" >
|
|
|
+ #{topLevel,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="remark1 != null" >
|
|
|
+ #{remark1,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="remark2 != null" >
|
|
|
+ #{remark2,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="remark3 != null" >
|
|
|
+ #{remark3,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.AimPlacePositionLevel" >
|
|
|
+ update aim_place_position_level
|
|
|
+ <set >
|
|
|
+ <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="name != null" >
|
|
|
+ name= #{name,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="ownedLandMarkId != null" >
|
|
|
+ owned_land_mark_id= #{ownedLandMarkId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="frontLevelId != null" >
|
|
|
+ front_level_id= #{frontLevelId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="aimPlacePositionId != null" >
|
|
|
+ aim_place_position_id= #{aimPlacePositionId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="topLevel != null" >
|
|
|
+ top_level= #{topLevel,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="remark1 != null" >
|
|
|
+ remark1= #{remark1,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="remark2 != null" >
|
|
|
+ remark2= #{remark2,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="remark3 != null" >
|
|
|
+ remark3= #{remark3,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </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="queryAimPlacePositionLevelByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.AimPlacePositionLevel">
|
|
|
+ select <include refid="Base_Column_List"/> from aim_place_position_level
|
|
|
+ <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>
|
|
|
+ <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.name != null and !"".equals(record.name)">
|
|
|
+ and name = #{record.name}
|
|
|
+ </if>
|
|
|
+ <if test="record.ownedLandMarkId != null and !"".equals(record.ownedLandMarkId)">
|
|
|
+ and owned_land_mark_id = #{record.ownedLandMarkId}
|
|
|
+ </if>
|
|
|
+ <if test="record.frontLevelId != null and !"".equals(record.frontLevelId)">
|
|
|
+ and front_level_id = #{record.frontLevelId}
|
|
|
+ </if>
|
|
|
+ <if test="record.aimPlacePositionId != null and !"".equals(record.aimPlacePositionId)">
|
|
|
+ and aim_place_position_id = #{record.aimPlacePositionId}
|
|
|
+ </if>
|
|
|
+ <if test="record.topLevel != null and !"".equals(record.topLevel)">
|
|
|
+ and top_level = #{record.topLevel}
|
|
|
+ </if>
|
|
|
+ <if test="record.remark1 != null and !"".equals(record.remark1)">
|
|
|
+ and remark1 = #{record.remark1}
|
|
|
+ </if>
|
|
|
+ <if test="record.remark2 != null and !"".equals(record.remark2)">
|
|
|
+ and remark2 = #{record.remark2}
|
|
|
+ </if>
|
|
|
+ <if test="record.remark3 != null and !"".equals(record.remark3)">
|
|
|
+ and remark3 = #{record.remark3}
|
|
|
+ </if>
|
|
|
+ <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
+ OR name LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR owned_land_mark_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR front_level_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR aim_place_position_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR top_level LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR remark1 LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR remark2 LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR remark3 LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ </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="queryAllAimPlacePositionLevel" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.AimPlacePositionLevel">
|
|
|
+ select <include refid="Base_Column_List"/> from aim_place_position_level
|
|
|
+ <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="name != null and !"".equals(name)">
|
|
|
+ and name = #{name}
|
|
|
+ </if>
|
|
|
+ <if test="ownedLandMarkId != null and !"".equals(ownedLandMarkId)">
|
|
|
+ and owned_land_mark_id = #{ownedLandMarkId}
|
|
|
+ </if>
|
|
|
+ <if test="frontLevelId != null and !"".equals(frontLevelId)">
|
|
|
+ and front_level_id = #{frontLevelId}
|
|
|
+ </if>
|
|
|
+ <if test="aimPlacePositionId != null and !"".equals(aimPlacePositionId)">
|
|
|
+ and aim_place_position_id = #{aimPlacePositionId}
|
|
|
+ </if>
|
|
|
+ <if test="topLevel != null and !"".equals(topLevel)">
|
|
|
+ and top_level = #{topLevel}
|
|
|
+ </if>
|
|
|
+ <if test="remark1 != null and !"".equals(remark1)">
|
|
|
+ and remark1 = #{remark1}
|
|
|
+ </if>
|
|
|
+ <if test="remark2 != null and !"".equals(remark2)">
|
|
|
+ and remark2 = #{remark2}
|
|
|
+ </if>
|
|
|
+ <if test="remark3 != null and !"".equals(remark3)">
|
|
|
+ and remark3 = #{remark3}
|
|
|
+ </if>
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
+ OR name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR owned_land_mark_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR front_level_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR aim_place_position_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR top_level LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR remark1 LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR remark2 LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR remark3 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>
|
|
|
+
|
|
|
+ </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="queryAimPlacePositionLevel" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.AimPlacePositionLevel">
|
|
|
+ select <include refid="Base_Column_List"/> from aim_place_position_level
|
|
|
+ <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="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="name != null and !"".equals(name)">
|
|
|
+ and name = #{name}
|
|
|
+ </if>
|
|
|
+ <if test="ownedLandMarkId != null and !"".equals(ownedLandMarkId)">
|
|
|
+ and owned_land_mark_id = #{ownedLandMarkId}
|
|
|
+ </if>
|
|
|
+ <if test="frontLevelId != null and !"".equals(frontLevelId)">
|
|
|
+ and front_level_id = #{frontLevelId}
|
|
|
+ </if>
|
|
|
+ <if test="aimPlacePositionId != null and !"".equals(aimPlacePositionId)">
|
|
|
+ and aim_place_position_id = #{aimPlacePositionId}
|
|
|
+ </if>
|
|
|
+ <if test="topLevel != null and !"".equals(topLevel)">
|
|
|
+ and top_level = #{topLevel}
|
|
|
+ </if>
|
|
|
+ <if test="remark1 != null and !"".equals(remark1)">
|
|
|
+ and remark1 = #{remark1}
|
|
|
+ </if>
|
|
|
+ <if test="remark2 != null and !"".equals(remark2)">
|
|
|
+ and remark2 = #{remark2}
|
|
|
+ </if>
|
|
|
+ <if test="remark3 != null and !"".equals(remark3)">
|
|
|
+ and remark3 = #{remark3}
|
|
|
+ </if>
|
|
|
+
|
|
|
+ </where>
|
|
|
+ LIMIT 1
|
|
|
+ </select>
|
|
|
+ <update id="delete">
|
|
|
+ UPDATE aim_place_position_level 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.AimPlacePositionLevel">
|
|
|
+ select <include refid="Base_Column_List"/> from aim_place_position_level
|
|
|
+ <where>
|
|
|
+ and del_flag = 'N'
|
|
|
+ </where>
|
|
|
+ order by id desc
|
|
|
+ </select>
|
|
|
+</mapper>
|
|
|
+
|