|
@@ -0,0 +1,545 @@
|
|
|
|
|
+<?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.PayCodeOrderMapper">
|
|
|
|
|
+ <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.PayCodeOrder">
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ <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="order_code" property="orderCode" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result column="type_flag" property="typeFlag" jdbcType="INTEGER"/>
|
|
|
|
|
+ <result column="code_id" property="codeId" jdbcType="INTEGER"/>
|
|
|
|
|
+ <result column="stock_id" property="stockId" jdbcType="INTEGER"/>
|
|
|
|
|
+ <result column="pay_type" property="payType" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result column="money" property="money" jdbcType="DECIMAL"/>
|
|
|
|
|
+ <result column="pay_money" property="payMoney" jdbcType="DECIMAL"/>
|
|
|
|
|
+ <result column="status_flag" property="statusFlag" jdbcType="INTEGER"/>
|
|
|
|
|
+ <result column="pay_time" property="payTime" jdbcType="TIMESTAMP"/>
|
|
|
|
|
+ <result column="user_id" property="userId" jdbcType="INTEGER"/>
|
|
|
|
|
+ <result column="remark" property="remark" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ </resultMap>
|
|
|
|
|
+
|
|
|
|
|
+ <sql id="Base_Column_List">
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ id, del_flag, update_time, update_user, create_time, create_user, order_code, type_flag, code_id, stock_id, pay_type, money, pay_money, status_flag, pay_time, user_id, remark <!--generatedEnd-->
|
|
|
|
|
+ </sql>
|
|
|
|
|
+
|
|
|
|
|
+ <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
|
|
|
|
|
+ SELECT
|
|
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
|
|
+ FROM pay_code_order
|
|
|
|
|
+ WHERE id = #{id,jdbcType=INTEGER}
|
|
|
|
|
+ </select>
|
|
|
|
|
+
|
|
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
|
|
+ DELETE
|
|
|
|
|
+ FROM pay_code_order
|
|
|
|
|
+ WHERE id = #{id,jdbcType=INTEGER}
|
|
|
|
|
+ </delete>
|
|
|
|
|
+
|
|
|
|
|
+ <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.PayCodeOrder" useGeneratedKeys="true" keyProperty="id">
|
|
|
|
|
+ INSERT INTO pay_code_order
|
|
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ <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="orderCode!= null">
|
|
|
|
|
+ order_code,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="typeFlag!= null">
|
|
|
|
|
+ type_flag,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="codeId!= null">
|
|
|
|
|
+ code_id,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="stockId!= null">
|
|
|
|
|
+ stock_id,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payType!= null">
|
|
|
|
|
+ pay_type,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="money!= null">
|
|
|
|
|
+ money,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payMoney!= null">
|
|
|
|
|
+ pay_money,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="statusFlag!= null">
|
|
|
|
|
+ status_flag,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payTime!= null">
|
|
|
|
|
+ pay_time,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="userId!= null">
|
|
|
|
|
+ user_id,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="remark!= null">
|
|
|
|
|
+ remark,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ </trim>
|
|
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ <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="orderCode != null">
|
|
|
|
|
+ #{orderCode,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="typeFlag != null">
|
|
|
|
|
+ #{typeFlag,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="codeId != null">
|
|
|
|
|
+ #{codeId,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="stockId != null">
|
|
|
|
|
+ #{stockId,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payType != null">
|
|
|
|
|
+ #{payType,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="money != null">
|
|
|
|
|
+ #{money,jdbcType=DECIMAL},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payMoney != null">
|
|
|
|
|
+ #{payMoney,jdbcType=DECIMAL},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="statusFlag != null">
|
|
|
|
|
+ #{statusFlag,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payTime != null">
|
|
|
|
|
+ #{payTime,jdbcType=TIMESTAMP},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="userId != null">
|
|
|
|
|
+ #{userId,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="remark != null">
|
|
|
|
|
+ #{remark,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ </trim>
|
|
|
|
|
+ </insert>
|
|
|
|
|
+
|
|
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.PayCodeOrder">
|
|
|
|
|
+ UPDATE pay_code_order
|
|
|
|
|
+ <set>
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ <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="orderCode != null">
|
|
|
|
|
+ order_code= #{orderCode,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="typeFlag != null">
|
|
|
|
|
+ type_flag= #{typeFlag,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="codeId != null">
|
|
|
|
|
+ code_id= #{codeId,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="stockId != null">
|
|
|
|
|
+ stock_id= #{stockId,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payType != null">
|
|
|
|
|
+ pay_type= #{payType,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="money != null">
|
|
|
|
|
+ money= #{money,jdbcType=DECIMAL},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payMoney != null">
|
|
|
|
|
+ pay_money= #{payMoney,jdbcType=DECIMAL},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="statusFlag != null">
|
|
|
|
|
+ status_flag= #{statusFlag,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payTime != null">
|
|
|
|
|
+ pay_time= #{payTime,jdbcType=TIMESTAMP},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="userId != null">
|
|
|
|
|
+ user_id= #{userId,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="remark != null">
|
|
|
|
|
+ remark= #{remark,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ </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="queryPayCodeOrderByPage" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.PayCodeOrder">
|
|
|
|
|
+ SELECT <include refid="Base_Column_List"/> FROM pay_code_order
|
|
|
|
|
+ <where>
|
|
|
|
|
+ AND del_flag = 'N'
|
|
|
|
|
+ <if test="record.idStr != null and !"".equals(record.idStr)">
|
|
|
|
|
+ AND id IN (${record.idStr})
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ <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.orderCode != null and !"".equals(record.orderCode)">
|
|
|
|
|
+ AND order_code = #{record.orderCode}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="record.typeFlag != null and !"".equals(record.typeFlag)">
|
|
|
|
|
+ AND type_flag = #{record.typeFlag}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="record.codeId != null and !"".equals(record.codeId)">
|
|
|
|
|
+ AND code_id = #{record.codeId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="record.stockId != null and !"".equals(record.stockId)">
|
|
|
|
|
+ AND stock_id = #{record.stockId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="record.payType != null and !"".equals(record.payType)">
|
|
|
|
|
+ AND pay_type = #{record.payType}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="record.money != null and !"".equals(record.money)">
|
|
|
|
|
+ AND money = #{record.money}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="record.payMoney != null and !"".equals(record.payMoney)">
|
|
|
|
|
+ AND pay_money = #{record.payMoney}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="record.statusFlag != null and !"".equals(record.statusFlag)">
|
|
|
|
|
+ AND status_flag = #{record.statusFlag}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="record.payTime != null and !"".equals(record.payTime)">
|
|
|
|
|
+ AND pay_time = #{record.payTime}
|
|
|
|
|
+ </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>
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ OR order_code LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR type_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR code_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR stock_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR pay_type LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR money LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR pay_money LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR status_flag LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR pay_time LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR user_id LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ OR remark LIKE concat('%',#{record.searchKey},'%')
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ </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="queryAllPayCodeOrder" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.PayCodeOrder">
|
|
|
|
|
+ SELECT <include refid="Base_Column_List"/> FROM pay_code_order
|
|
|
|
|
+ <where>
|
|
|
|
|
+ AND del_flag = 'N'
|
|
|
|
|
+ <if test="idStr != null and !"".equals(idStr)">
|
|
|
|
|
+ AND id IN (${idStr})
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ <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="orderCode != null and !"".equals(orderCode)">
|
|
|
|
|
+ AND order_code = #{orderCode}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="typeFlag != null and !"".equals(typeFlag)">
|
|
|
|
|
+ AND type_flag = #{typeFlag}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="codeId != null and !"".equals(codeId)">
|
|
|
|
|
+ AND code_id = #{codeId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="stockId != null and !"".equals(stockId)">
|
|
|
|
|
+ AND stock_id = #{stockId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payType != null and !"".equals(payType)">
|
|
|
|
|
+ AND pay_type = #{payType}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="money != null and !"".equals(money)">
|
|
|
|
|
+ AND money = #{money}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payMoney != null and !"".equals(payMoney)">
|
|
|
|
|
+ AND pay_money = #{payMoney}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
|
|
+ AND status_flag = #{statusFlag}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payTime != null and !"".equals(payTime)">
|
|
|
|
|
+ AND pay_time = #{payTime}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="userId != null and !"".equals(userId)">
|
|
|
|
|
+ AND user_id = #{userId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="remark != null and !"".equals(remark)">
|
|
|
|
|
+ AND remark = #{remark}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ OR order_code LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR type_flag LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR code_id LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR stock_id LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR pay_type LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR money LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR pay_money LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR status_flag LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR pay_time LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR user_id LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ OR remark LIKE concat('%',#{searchKey},'%')
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ </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="queryPayCodeOrder" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.PayCodeOrder">
|
|
|
|
|
+ SELECT <include refid="Base_Column_List"/> FROM pay_code_order
|
|
|
|
|
+ <where>
|
|
|
|
|
+ AND del_flag = 'N'
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ <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="orderCode != null and !"".equals(orderCode)">
|
|
|
|
|
+ AND order_code = #{orderCode}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="typeFlag != null and !"".equals(typeFlag)">
|
|
|
|
|
+ AND type_flag = #{typeFlag}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="codeId != null and !"".equals(codeId)">
|
|
|
|
|
+ AND code_id = #{codeId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="stockId != null and !"".equals(stockId)">
|
|
|
|
|
+ AND stock_id = #{stockId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payType != null and !"".equals(payType)">
|
|
|
|
|
+ AND pay_type = #{payType}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="money != null and !"".equals(money)">
|
|
|
|
|
+ AND money = #{money}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payMoney != null and !"".equals(payMoney)">
|
|
|
|
|
+ AND pay_money = #{payMoney}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
|
|
+ AND status_flag = #{statusFlag}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="payTime != null and !"".equals(payTime)">
|
|
|
|
|
+ AND pay_time = #{payTime}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="userId != null and !"".equals(userId)">
|
|
|
|
|
+ AND user_id = #{userId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="remark != null and !"".equals(remark)">
|
|
|
|
|
+ AND remark = #{remark}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ </where>
|
|
|
|
|
+ LIMIT 1
|
|
|
|
|
+ </select>
|
|
|
|
|
+
|
|
|
|
|
+ <update id="delete">
|
|
|
|
|
+ UPDATE pay_code_order 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.PayCodeOrder">
|
|
|
|
|
+ SELECT
|
|
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
|
|
+ FROM pay_code_order
|
|
|
|
|
+ <where>
|
|
|
|
|
+ AND del_flag = 'N'
|
|
|
|
|
+ <!--generatedStart-->
|
|
|
|
|
+ <!--generatedEnd-->
|
|
|
|
|
+ </where>
|
|
|
|
|
+ ORDER BY id DESC
|
|
|
|
|
+ </select>
|
|
|
|
|
+</mapper>
|
|
|
|
|
+
|