|
|
@@ -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.PlatformIncomeRecordMapper" >
|
|
|
+ <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.PlatformIncomeRecord" >
|
|
|
+ <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="game_id" property="gameId" jdbcType="INTEGER" />
|
|
|
+ <result column="house_id" property="houseId" jdbcType="INTEGER" />
|
|
|
+ <result column="user_id" property="userId" jdbcType="INTEGER" />
|
|
|
+ <result column="remark" property="remark" jdbcType="VARCHAR" />
|
|
|
+ <result column="money" property="money" jdbcType="DECIMAL" />
|
|
|
+ <result column="status_flag" property="statusFlag" jdbcType="INTEGER" />
|
|
|
+ <result column="season_id" property="seasonId" jdbcType="INTEGER" />
|
|
|
+ <result column="player_id" property="playerId" jdbcType="INTEGER" />
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List" >
|
|
|
+ <trim suffixOverrides="," >
|
|
|
+ id,
|
|
|
+
|
|
|
+ del_flag,
|
|
|
+
|
|
|
+ update_time,
|
|
|
+
|
|
|
+ update_user,
|
|
|
+
|
|
|
+ create_time,
|
|
|
+
|
|
|
+ create_user,
|
|
|
+
|
|
|
+ game_id,
|
|
|
+
|
|
|
+ house_id,
|
|
|
+
|
|
|
+ user_id,
|
|
|
+
|
|
|
+ remark,
|
|
|
+
|
|
|
+ money,
|
|
|
+
|
|
|
+ status_flag,
|
|
|
+
|
|
|
+ season_id,
|
|
|
+
|
|
|
+ player_id,
|
|
|
+
|
|
|
+ </trim>
|
|
|
+ </sql>
|
|
|
+ <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from platform_income_record
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </select>
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
|
|
+ delete from platform_income_record
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </delete>
|
|
|
+ <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.PlatformIncomeRecord" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into platform_income_record
|
|
|
+ <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="gameId!= null" >
|
|
|
+ game_id,
|
|
|
+ </if>
|
|
|
+ <if test="houseId!= null" >
|
|
|
+ house_id,
|
|
|
+ </if>
|
|
|
+ <if test="userId!= null" >
|
|
|
+ user_id,
|
|
|
+ </if>
|
|
|
+ <if test="remark!= null" >
|
|
|
+ remark,
|
|
|
+ </if>
|
|
|
+ <if test="money!= null" >
|
|
|
+ money,
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag!= null" >
|
|
|
+ status_flag,
|
|
|
+ </if>
|
|
|
+ <if test="seasonId!= null" >
|
|
|
+ season_id,
|
|
|
+ </if>
|
|
|
+ <if test="playerId!= null" >
|
|
|
+ player_id,
|
|
|
+ </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="gameId != null" >
|
|
|
+ #{gameId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="houseId != null" >
|
|
|
+ #{houseId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="userId != null" >
|
|
|
+ #{userId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="remark != null" >
|
|
|
+ #{remark,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="money != null" >
|
|
|
+ #{money,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag != null" >
|
|
|
+ #{statusFlag,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="seasonId != null" >
|
|
|
+ #{seasonId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="playerId != null" >
|
|
|
+ #{playerId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.PlatformIncomeRecord" >
|
|
|
+ update platform_income_record
|
|
|
+ <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="gameId != null" >
|
|
|
+ game_id= #{gameId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="houseId != null" >
|
|
|
+ house_id= #{houseId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="userId != null" >
|
|
|
+ user_id= #{userId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="remark != null" >
|
|
|
+ remark= #{remark,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="money != null" >
|
|
|
+ money= #{money,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag != null" >
|
|
|
+ status_flag= #{statusFlag,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="seasonId != null" >
|
|
|
+ season_id= #{seasonId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="playerId != null" >
|
|
|
+ player_id= #{playerId,jdbcType=INTEGER},
|
|
|
+ </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="queryPlatformIncomeRecordByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.PlatformIncomeRecord">
|
|
|
+ select <include refid="Base_Column_List"/> from platform_income_record
|
|
|
+ <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.gameId != null and !"".equals(record.gameId)">
|
|
|
+ and game_id = #{record.gameId}
|
|
|
+ </if>
|
|
|
+ <if test="record.houseId != null and !"".equals(record.houseId)">
|
|
|
+ and house_id = #{record.houseId}
|
|
|
+ </if>
|
|
|
+ <if test="record.userId != null and !"".equals(record.userId)">
|
|
|
+ and user_id = #{record.userId}
|
|
|
+ </if>
|
|
|
+ <if test="record.remark != null and !"".equals(record.remark)">
|
|
|
+ and remark = #{record.remark}
|
|
|
+ </if>
|
|
|
+ <if test="record.money != null and !"".equals(record.money)">
|
|
|
+ and money = #{record.money}
|
|
|
+ </if>
|
|
|
+ <if test="record.statusFlag != null and !"".equals(record.statusFlag)">
|
|
|
+ and status_flag = #{record.statusFlag}
|
|
|
+ </if>
|
|
|
+ <if test="record.seasonId != null and !"".equals(record.seasonId)">
|
|
|
+ and season_id = #{record.seasonId}
|
|
|
+ </if>
|
|
|
+ <if test="record.playerId != null and !"".equals(record.playerId)">
|
|
|
+ and player_id = #{record.playerId}
|
|
|
+ </if>
|
|
|
+ <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
+ OR game_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR house_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR user_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR remark LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR money LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR status_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR season_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR player_id 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="queryAllPlatformIncomeRecord" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.PlatformIncomeRecord">
|
|
|
+ select <include refid="Base_Column_List"/> from platform_income_record
|
|
|
+ <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="gameId != null and !"".equals(gameId)">
|
|
|
+ and game_id = #{gameId}
|
|
|
+ </if>
|
|
|
+ <if test="houseId != null and !"".equals(houseId)">
|
|
|
+ and house_id = #{houseId}
|
|
|
+ </if>
|
|
|
+ <if test="userId != null and !"".equals(userId)">
|
|
|
+ and user_id = #{userId}
|
|
|
+ </if>
|
|
|
+ <if test="remark != null and !"".equals(remark)">
|
|
|
+ and remark = #{remark}
|
|
|
+ </if>
|
|
|
+ <if test="money != null and !"".equals(money)">
|
|
|
+ and money = #{money}
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
+ and status_flag = #{statusFlag}
|
|
|
+ </if>
|
|
|
+ <if test="seasonId != null and !"".equals(seasonId)">
|
|
|
+ and season_id = #{seasonId}
|
|
|
+ </if>
|
|
|
+ <if test="playerId != null and !"".equals(playerId)">
|
|
|
+ and player_id = #{playerId}
|
|
|
+ </if>
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR" >
|
|
|
+ OR game_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR house_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR user_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR remark LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR money LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR status_flag LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR season_id LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR player_id 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="queryPlatformIncomeRecord" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.PlatformIncomeRecord">
|
|
|
+ select <include refid="Base_Column_List"/> from platform_income_record
|
|
|
+ <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="gameId != null and !"".equals(gameId)">
|
|
|
+ and game_id = #{gameId}
|
|
|
+ </if>
|
|
|
+ <if test="houseId != null and !"".equals(houseId)">
|
|
|
+ and house_id = #{houseId}
|
|
|
+ </if>
|
|
|
+ <if test="userId != null and !"".equals(userId)">
|
|
|
+ and user_id = #{userId}
|
|
|
+ </if>
|
|
|
+ <if test="remark != null and !"".equals(remark)">
|
|
|
+ and remark = #{remark}
|
|
|
+ </if>
|
|
|
+ <if test="money != null and !"".equals(money)">
|
|
|
+ and money = #{money}
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
+ and status_flag = #{statusFlag}
|
|
|
+ </if>
|
|
|
+ <if test="seasonId != null and !"".equals(seasonId)">
|
|
|
+ and season_id = #{seasonId}
|
|
|
+ </if>
|
|
|
+ <if test="playerId != null and !"".equals(playerId)">
|
|
|
+ and player_id = #{playerId}
|
|
|
+ </if>
|
|
|
+
|
|
|
+ </where>
|
|
|
+ LIMIT 1
|
|
|
+ </select>
|
|
|
+ <update id="delete">
|
|
|
+ UPDATE platform_income_record 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.PlatformIncomeRecord">
|
|
|
+ select <include refid="Base_Column_List"/> from platform_income_record
|
|
|
+ <where>
|
|
|
+ and del_flag = 'N'
|
|
|
+ </where>
|
|
|
+ order by id desc
|
|
|
+ </select>
|
|
|
+</mapper>
|
|
|
+
|