|
|
@@ -0,0 +1,898 @@
|
|
|
+<?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.ClientOrderMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.ClientOrder">
|
|
|
+ <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="user_id" property="userId" jdbcType="INTEGER"/>
|
|
|
+ <result column="order_code" property="orderCode" jdbcType="VARCHAR"/>
|
|
|
+ <result column="store_id" property="storeId" jdbcType="INTEGER"/>
|
|
|
+ <result column="product_type" property="productType" jdbcType="VARCHAR"/>
|
|
|
+ <result column="product_id" property="productId" jdbcType="INTEGER"/>
|
|
|
+ <result column="product_name" property="productName" jdbcType="VARCHAR"/>
|
|
|
+ <result column="specification" property="specification" jdbcType="VARCHAR"/>
|
|
|
+ <result column="unit_price" property="unitPrice" jdbcType="DECIMAL"/>
|
|
|
+ <result column="quantity" property="quantity" jdbcType="INTEGER"/>
|
|
|
+ <result column="user_coupon_id" property="userCouponId" jdbcType="INTEGER"/>
|
|
|
+ <result column="off_price" property="offPrice" jdbcType="DECIMAL"/>
|
|
|
+ <result column="totle_price" property="totlePrice" jdbcType="DECIMAL"/>
|
|
|
+ <result column="deal_price" property="dealPrice" jdbcType="DECIMAL"/>
|
|
|
+ <result column="pay_mode" property="payMode" jdbcType="INTEGER"/>
|
|
|
+ <result column="pay_time" property="payTime" jdbcType="TIMESTAMP"/>
|
|
|
+ <result column="remark" property="remark" jdbcType="VARCHAR"/>
|
|
|
+ <result column="show_flag" property="showFlag" jdbcType="CHAR"/>
|
|
|
+ <result column="status_flag" property="statusFlag" jdbcType="INTEGER"/>
|
|
|
+ <result column="fee" property="fee" jdbcType="DECIMAL"/>
|
|
|
+ <result column="coin" property="coin" jdbcType="DECIMAL"/>
|
|
|
+ <result column="point" property="point" jdbcType="DECIMAL"/>
|
|
|
+ <result column="cash" property="cash" jdbcType="DECIMAL"/>
|
|
|
+ <result column="cancel_reason" property="cancelReason" jdbcType="VARCHAR"/>
|
|
|
+ <result column="album_price" property="albumPrice" jdbcType="DECIMAL"/>
|
|
|
+ <result column="album_quantity" property="albumQuantity" jdbcType="INTEGER"/>
|
|
|
+ <result column="order_name" property="orderName" jdbcType="VARCHAR"/>
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ <trim suffixOverrides=",">
|
|
|
+ id,
|
|
|
+
|
|
|
+ del_flag,
|
|
|
+
|
|
|
+ update_time,
|
|
|
+
|
|
|
+ update_user,
|
|
|
+
|
|
|
+ create_time,
|
|
|
+
|
|
|
+ create_user,
|
|
|
+
|
|
|
+ user_id,
|
|
|
+
|
|
|
+ order_code,
|
|
|
+
|
|
|
+ store_id,
|
|
|
+
|
|
|
+ product_type,
|
|
|
+
|
|
|
+ product_id,
|
|
|
+
|
|
|
+ product_name,
|
|
|
+
|
|
|
+ specification,
|
|
|
+
|
|
|
+ unit_price,
|
|
|
+
|
|
|
+ quantity,
|
|
|
+
|
|
|
+ user_coupon_id,
|
|
|
+
|
|
|
+ off_price,
|
|
|
+
|
|
|
+ totle_price,
|
|
|
+
|
|
|
+ deal_price,
|
|
|
+
|
|
|
+ pay_mode,
|
|
|
+
|
|
|
+ pay_time,
|
|
|
+
|
|
|
+ remark,
|
|
|
+
|
|
|
+ show_flag,
|
|
|
+
|
|
|
+ status_flag,
|
|
|
+
|
|
|
+ fee,
|
|
|
+
|
|
|
+ coin,
|
|
|
+
|
|
|
+ point,
|
|
|
+
|
|
|
+ cash,
|
|
|
+
|
|
|
+ cancel_reason,
|
|
|
+
|
|
|
+ album_price,
|
|
|
+
|
|
|
+ album_quantity,
|
|
|
+
|
|
|
+ order_name,
|
|
|
+
|
|
|
+ </trim>
|
|
|
+ </sql>
|
|
|
+ <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from client_order
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </select>
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
|
+ delete from client_order
|
|
|
+ where id = #{id,jdbcType=INTEGER}
|
|
|
+ </delete>
|
|
|
+ <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.ClientOrder" useGeneratedKeys="true"
|
|
|
+ keyProperty="id">
|
|
|
+ insert into client_order
|
|
|
+ <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="userId!= null">
|
|
|
+ user_id,
|
|
|
+ </if>
|
|
|
+ <if test="orderCode!= null">
|
|
|
+ order_code,
|
|
|
+ </if>
|
|
|
+ <if test="storeId!= null">
|
|
|
+ store_id,
|
|
|
+ </if>
|
|
|
+ <if test="productType!= null">
|
|
|
+ product_type,
|
|
|
+ </if>
|
|
|
+ <if test="productId!= null">
|
|
|
+ product_id,
|
|
|
+ </if>
|
|
|
+ <if test="productName!= null">
|
|
|
+ product_name,
|
|
|
+ </if>
|
|
|
+ <if test="specification!= null">
|
|
|
+ specification,
|
|
|
+ </if>
|
|
|
+ <if test="unitPrice!= null">
|
|
|
+ unit_price,
|
|
|
+ </if>
|
|
|
+ <if test="quantity!= null">
|
|
|
+ quantity,
|
|
|
+ </if>
|
|
|
+ <if test="userCouponId!= null">
|
|
|
+ user_coupon_id,
|
|
|
+ </if>
|
|
|
+ <if test="offPrice!= null">
|
|
|
+ off_price,
|
|
|
+ </if>
|
|
|
+ <if test="totlePrice!= null">
|
|
|
+ totle_price,
|
|
|
+ </if>
|
|
|
+ <if test="dealPrice!= null">
|
|
|
+ deal_price,
|
|
|
+ </if>
|
|
|
+ <if test="payMode!= null">
|
|
|
+ pay_mode,
|
|
|
+ </if>
|
|
|
+ <if test="payTime!= null">
|
|
|
+ pay_time,
|
|
|
+ </if>
|
|
|
+ <if test="remark!= null">
|
|
|
+ remark,
|
|
|
+ </if>
|
|
|
+ <if test="showFlag!= null">
|
|
|
+ show_flag,
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag!= null">
|
|
|
+ status_flag,
|
|
|
+ </if>
|
|
|
+ <if test="fee!= null">
|
|
|
+ fee,
|
|
|
+ </if>
|
|
|
+ <if test="coin!= null">
|
|
|
+ coin,
|
|
|
+ </if>
|
|
|
+ <if test="point!= null">
|
|
|
+ point,
|
|
|
+ </if>
|
|
|
+ <if test="cash!= null">
|
|
|
+ cash,
|
|
|
+ </if>
|
|
|
+ <if test="cancelReason!= null">
|
|
|
+ cancel_reason,
|
|
|
+ </if>
|
|
|
+ <if test="albumPrice!= null">
|
|
|
+ album_price,
|
|
|
+ </if>
|
|
|
+ <if test="albumQuantity!= null">
|
|
|
+ album_quantity,
|
|
|
+ </if>
|
|
|
+ <if test="orderName!= null">
|
|
|
+ order_name,
|
|
|
+ </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="userId != null">
|
|
|
+ #{userId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="orderCode != null">
|
|
|
+ #{orderCode,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="storeId != null">
|
|
|
+ #{storeId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="productType != null">
|
|
|
+ #{productType,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="productId != null">
|
|
|
+ #{productId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="productName != null">
|
|
|
+ #{productName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="specification != null">
|
|
|
+ #{specification,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="unitPrice != null">
|
|
|
+ #{unitPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="quantity != null">
|
|
|
+ #{quantity,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="userCouponId != null">
|
|
|
+ #{userCouponId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="offPrice != null">
|
|
|
+ #{offPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="totlePrice != null">
|
|
|
+ #{totlePrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="dealPrice != null">
|
|
|
+ #{dealPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="payMode != null">
|
|
|
+ #{payMode,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="payTime != null">
|
|
|
+ #{payTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="remark != null">
|
|
|
+ #{remark,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="showFlag != null">
|
|
|
+ #{showFlag,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag != null">
|
|
|
+ #{statusFlag,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="fee != null">
|
|
|
+ #{fee,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="coin != null">
|
|
|
+ #{coin,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="point != null">
|
|
|
+ #{point,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="cash != null">
|
|
|
+ #{cash,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="cancelReason != null">
|
|
|
+ #{cancelReason,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="albumPrice != null">
|
|
|
+ #{albumPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="albumQuantity != null">
|
|
|
+ #{albumQuantity,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="orderName != null">
|
|
|
+ #{orderName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.ClientOrder">
|
|
|
+ update client_order
|
|
|
+ <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="userId != null">
|
|
|
+ user_id= #{userId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="orderCode != null">
|
|
|
+ order_code= #{orderCode,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="storeId != null">
|
|
|
+ store_id= #{storeId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="productType != null">
|
|
|
+ product_type= #{productType,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="productId != null">
|
|
|
+ product_id= #{productId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="productName != null">
|
|
|
+ product_name= #{productName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="specification != null">
|
|
|
+ specification= #{specification,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="unitPrice != null">
|
|
|
+ unit_price= #{unitPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="quantity != null">
|
|
|
+ quantity= #{quantity,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="userCouponId != null">
|
|
|
+ user_coupon_id= #{userCouponId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="offPrice != null">
|
|
|
+ off_price= #{offPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="totlePrice != null">
|
|
|
+ totle_price= #{totlePrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="dealPrice != null">
|
|
|
+ deal_price= #{dealPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="payMode != null">
|
|
|
+ pay_mode= #{payMode,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="payTime != null">
|
|
|
+ pay_time= #{payTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="remark != null">
|
|
|
+ remark= #{remark,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="showFlag != null">
|
|
|
+ show_flag= #{showFlag,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag != null">
|
|
|
+ status_flag= #{statusFlag,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="fee != null">
|
|
|
+ fee= #{fee,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="coin != null">
|
|
|
+ coin= #{coin,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="point != null">
|
|
|
+ point= #{point,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="cash != null">
|
|
|
+ cash= #{cash,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="cancelReason != null">
|
|
|
+ cancel_reason= #{cancelReason,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="albumPrice != null">
|
|
|
+ album_price= #{albumPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="albumQuantity != null">
|
|
|
+ album_quantity= #{albumQuantity,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="orderName != null">
|
|
|
+ order_name= #{orderName,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="queryClientOrderByPage" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.ClientOrder">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from client_order
|
|
|
+ <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.userId != null and !"".equals(record.userId)">
|
|
|
+ and user_id = #{record.userId}
|
|
|
+ </if>
|
|
|
+ <if test="record.orderCode != null and !"".equals(record.orderCode)">
|
|
|
+ and order_code = #{record.orderCode}
|
|
|
+ </if>
|
|
|
+ <if test="record.storeId != null and !"".equals(record.storeId)">
|
|
|
+ and store_id = #{record.storeId}
|
|
|
+ </if>
|
|
|
+ <if test="record.productType != null and !"".equals(record.productType)">
|
|
|
+ and product_type = #{record.productType}
|
|
|
+ </if>
|
|
|
+ <if test="record.productId != null and !"".equals(record.productId)">
|
|
|
+ and product_id = #{record.productId}
|
|
|
+ </if>
|
|
|
+ <if test="record.productName != null and !"".equals(record.productName)">
|
|
|
+ and product_name = #{record.productName}
|
|
|
+ </if>
|
|
|
+ <if test="record.specification != null and !"".equals(record.specification)">
|
|
|
+ and specification = #{record.specification}
|
|
|
+ </if>
|
|
|
+ <if test="record.unitPrice != null and !"".equals(record.unitPrice)">
|
|
|
+ and unit_price = #{record.unitPrice}
|
|
|
+ </if>
|
|
|
+ <if test="record.quantity != null and !"".equals(record.quantity)">
|
|
|
+ and quantity = #{record.quantity}
|
|
|
+ </if>
|
|
|
+ <if test="record.userCouponId != null and !"".equals(record.userCouponId)">
|
|
|
+ and user_coupon_id = #{record.userCouponId}
|
|
|
+ </if>
|
|
|
+ <if test="record.offPrice != null and !"".equals(record.offPrice)">
|
|
|
+ and off_price = #{record.offPrice}
|
|
|
+ </if>
|
|
|
+ <if test="record.totlePrice != null and !"".equals(record.totlePrice)">
|
|
|
+ and totle_price = #{record.totlePrice}
|
|
|
+ </if>
|
|
|
+ <if test="record.dealPrice != null and !"".equals(record.dealPrice)">
|
|
|
+ and deal_price = #{record.dealPrice}
|
|
|
+ </if>
|
|
|
+ <if test="record.payMode != null and !"".equals(record.payMode)">
|
|
|
+ and pay_mode = #{record.payMode}
|
|
|
+ </if>
|
|
|
+ <if test="record.payTime != null and !"".equals(record.payTime)">
|
|
|
+ and pay_time = #{record.payTime}
|
|
|
+ </if>
|
|
|
+ <if test="record.remark != null and !"".equals(record.remark)">
|
|
|
+ and remark = #{record.remark}
|
|
|
+ </if>
|
|
|
+ <if test="record.showFlag != null and !"".equals(record.showFlag)">
|
|
|
+ and show_flag = #{record.showFlag}
|
|
|
+ </if>
|
|
|
+ <if test="record.statusFlag != null and !"".equals(record.statusFlag)">
|
|
|
+ and status_flag = #{record.statusFlag}
|
|
|
+ </if>
|
|
|
+ <if test="record.fee != null and !"".equals(record.fee)">
|
|
|
+ and fee = #{record.fee}
|
|
|
+ </if>
|
|
|
+ <if test="record.coin != null and !"".equals(record.coin)">
|
|
|
+ and coin = #{record.coin}
|
|
|
+ </if>
|
|
|
+ <if test="record.point != null and !"".equals(record.point)">
|
|
|
+ and point = #{record.point}
|
|
|
+ </if>
|
|
|
+ <if test="record.cash != null and !"".equals(record.cash)">
|
|
|
+ and cash = #{record.cash}
|
|
|
+ </if>
|
|
|
+ <if test="record.cancelReason != null and !"".equals(record.cancelReason)">
|
|
|
+ and cancel_reason = #{record.cancelReason}
|
|
|
+ </if>
|
|
|
+ <if test="record.albumPrice != null and !"".equals(record.albumPrice)">
|
|
|
+ and album_price = #{record.albumPrice}
|
|
|
+ </if>
|
|
|
+ <if test="record.albumQuantity != null and !"".equals(record.albumQuantity)">
|
|
|
+ and album_quantity = #{record.albumQuantity}
|
|
|
+ </if>
|
|
|
+ <if test="record.orderName != null and !"".equals(record.orderName)">
|
|
|
+ and order_name = #{record.orderName}
|
|
|
+ </if>
|
|
|
+ <if test="record.searchKey != null and !"".equals(record.searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR order_code LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR product_name LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR remark LIKE concat('%',#{record.searchKey},'%')
|
|
|
+ OR order_name 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="queryAllClientOrder" parameterType="java.util.Map"
|
|
|
+ resultType="com.izouma.awesomeadmin.model.ClientOrder">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from client_order
|
|
|
+ <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="userId != null and !"".equals(userId)">
|
|
|
+ and user_id = #{userId}
|
|
|
+ </if>
|
|
|
+ <if test="orderCode != null and !"".equals(orderCode)">
|
|
|
+ and order_code = #{orderCode}
|
|
|
+ </if>
|
|
|
+ <if test="storeId != null and !"".equals(storeId)">
|
|
|
+ and store_id = #{storeId}
|
|
|
+ </if>
|
|
|
+ <if test="productType != null and !"".equals(productType)">
|
|
|
+ and product_type = #{productType}
|
|
|
+ </if>
|
|
|
+ <if test="productId != null and !"".equals(productId)">
|
|
|
+ and product_id = #{productId}
|
|
|
+ </if>
|
|
|
+ <if test="productName != null and !"".equals(productName)">
|
|
|
+ and product_name = #{productName}
|
|
|
+ </if>
|
|
|
+ <if test="specification != null and !"".equals(specification)">
|
|
|
+ and specification = #{specification}
|
|
|
+ </if>
|
|
|
+ <if test="unitPrice != null and !"".equals(unitPrice)">
|
|
|
+ and unit_price = #{unitPrice}
|
|
|
+ </if>
|
|
|
+ <if test="quantity != null and !"".equals(quantity)">
|
|
|
+ and quantity = #{quantity}
|
|
|
+ </if>
|
|
|
+ <if test="userCouponId != null and !"".equals(userCouponId)">
|
|
|
+ and user_coupon_id = #{userCouponId}
|
|
|
+ </if>
|
|
|
+ <if test="offPrice != null and !"".equals(offPrice)">
|
|
|
+ and off_price = #{offPrice}
|
|
|
+ </if>
|
|
|
+ <if test="totlePrice != null and !"".equals(totlePrice)">
|
|
|
+ and totle_price = #{totlePrice}
|
|
|
+ </if>
|
|
|
+ <if test="dealPrice != null and !"".equals(dealPrice)">
|
|
|
+ and deal_price = #{dealPrice}
|
|
|
+ </if>
|
|
|
+ <if test="payMode != null and !"".equals(payMode)">
|
|
|
+ and pay_mode = #{payMode}
|
|
|
+ </if>
|
|
|
+ <if test="payTime != null and !"".equals(payTime)">
|
|
|
+ and pay_time = #{payTime}
|
|
|
+ </if>
|
|
|
+ <if test="remark != null and !"".equals(remark)">
|
|
|
+ and remark = #{remark}
|
|
|
+ </if>
|
|
|
+ <if test="showFlag != null and !"".equals(showFlag)">
|
|
|
+ and show_flag = #{showFlag}
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
+ and status_flag = #{statusFlag}
|
|
|
+ </if>
|
|
|
+ <if test="fee != null and !"".equals(fee)">
|
|
|
+ and fee = #{fee}
|
|
|
+ </if>
|
|
|
+ <if test="coin != null and !"".equals(coin)">
|
|
|
+ and coin = #{coin}
|
|
|
+ </if>
|
|
|
+ <if test="point != null and !"".equals(point)">
|
|
|
+ and point = #{point}
|
|
|
+ </if>
|
|
|
+ <if test="cash != null and !"".equals(cash)">
|
|
|
+ and cash = #{cash}
|
|
|
+ </if>
|
|
|
+ <if test="cancelReason != null and !"".equals(cancelReason)">
|
|
|
+ and cancel_reason = #{cancelReason}
|
|
|
+ </if>
|
|
|
+ <if test="albumPrice != null and !"".equals(albumPrice)">
|
|
|
+ and album_price = #{albumPrice}
|
|
|
+ </if>
|
|
|
+ <if test="albumQuantity != null and !"".equals(albumQuantity)">
|
|
|
+ and album_quantity = #{albumQuantity}
|
|
|
+ </if>
|
|
|
+ <if test="orderName != null and !"".equals(orderName)">
|
|
|
+ and order_name = #{orderName}
|
|
|
+ </if>
|
|
|
+ <if test="searchKey != null and !"".equals(searchKey)">
|
|
|
+ <trim prefix="and (" suffix=")" prefixOverrides="OR">
|
|
|
+ OR order_code LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR product_name LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR remark LIKE concat('%',#{searchKey},'%')
|
|
|
+ OR order_name 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="queryClientOrder" parameterType="java.util.Map" resultMap="AllInfoForGetOne">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from client_order
|
|
|
+ <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="userId != null and !"".equals(userId)">
|
|
|
+ and user_id = #{userId}
|
|
|
+ </if>
|
|
|
+ <if test="orderCode != null and !"".equals(orderCode)">
|
|
|
+ and order_code = #{orderCode}
|
|
|
+ </if>
|
|
|
+ <if test="storeId != null and !"".equals(storeId)">
|
|
|
+ and store_id = #{storeId}
|
|
|
+ </if>
|
|
|
+ <if test="productType != null and !"".equals(productType)">
|
|
|
+ and product_type = #{productType}
|
|
|
+ </if>
|
|
|
+ <if test="productId != null and !"".equals(productId)">
|
|
|
+ and product_id = #{productId}
|
|
|
+ </if>
|
|
|
+ <if test="productName != null and !"".equals(productName)">
|
|
|
+ and product_name = #{productName}
|
|
|
+ </if>
|
|
|
+ <if test="specification != null and !"".equals(specification)">
|
|
|
+ and specification = #{specification}
|
|
|
+ </if>
|
|
|
+ <if test="unitPrice != null and !"".equals(unitPrice)">
|
|
|
+ and unit_price = #{unitPrice}
|
|
|
+ </if>
|
|
|
+ <if test="quantity != null and !"".equals(quantity)">
|
|
|
+ and quantity = #{quantity}
|
|
|
+ </if>
|
|
|
+ <if test="userCouponId != null and !"".equals(userCouponId)">
|
|
|
+ and user_coupon_id = #{userCouponId}
|
|
|
+ </if>
|
|
|
+ <if test="offPrice != null and !"".equals(offPrice)">
|
|
|
+ and off_price = #{offPrice}
|
|
|
+ </if>
|
|
|
+ <if test="totlePrice != null and !"".equals(totlePrice)">
|
|
|
+ and totle_price = #{totlePrice}
|
|
|
+ </if>
|
|
|
+ <if test="dealPrice != null and !"".equals(dealPrice)">
|
|
|
+ and deal_price = #{dealPrice}
|
|
|
+ </if>
|
|
|
+ <if test="payMode != null and !"".equals(payMode)">
|
|
|
+ and pay_mode = #{payMode}
|
|
|
+ </if>
|
|
|
+ <if test="payTime != null and !"".equals(payTime)">
|
|
|
+ and pay_time = #{payTime}
|
|
|
+ </if>
|
|
|
+ <if test="remark != null and !"".equals(remark)">
|
|
|
+ and remark = #{remark}
|
|
|
+ </if>
|
|
|
+ <if test="showFlag != null and !"".equals(showFlag)">
|
|
|
+ and show_flag = #{showFlag}
|
|
|
+ </if>
|
|
|
+ <if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
+ and status_flag = #{statusFlag}
|
|
|
+ </if>
|
|
|
+ <if test="fee != null and !"".equals(fee)">
|
|
|
+ and fee = #{fee}
|
|
|
+ </if>
|
|
|
+ <if test="coin != null and !"".equals(coin)">
|
|
|
+ and coin = #{coin}
|
|
|
+ </if>
|
|
|
+ <if test="point != null and !"".equals(point)">
|
|
|
+ and point = #{point}
|
|
|
+ </if>
|
|
|
+ <if test="cash != null and !"".equals(cash)">
|
|
|
+ and cash = #{cash}
|
|
|
+ </if>
|
|
|
+ <if test="cancelReason != null and !"".equals(cancelReason)">
|
|
|
+ and cancel_reason = #{cancelReason}
|
|
|
+ </if>
|
|
|
+ <if test="albumPrice != null and !"".equals(albumPrice)">
|
|
|
+ and album_price = #{albumPrice}
|
|
|
+ </if>
|
|
|
+ <if test="albumQuantity != null and !"".equals(albumQuantity)">
|
|
|
+ and album_quantity = #{albumQuantity}
|
|
|
+ </if>
|
|
|
+ <if test="orderName != null and !"".equals(orderName)">
|
|
|
+ and order_name = #{orderName}
|
|
|
+ </if>
|
|
|
+
|
|
|
+ </where>
|
|
|
+ LIMIT 1
|
|
|
+ </select>
|
|
|
+ <update id="delete">
|
|
|
+ UPDATE client_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.ClientOrder">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from client_order
|
|
|
+ <where>
|
|
|
+ and del_flag = 'N'
|
|
|
+ </where>
|
|
|
+ order by id desc
|
|
|
+ </select>
|
|
|
+
|
|
|
+
|
|
|
+ <resultMap id="AllInfoForGetOne" type="com.izouma.awesomeadmin.model.ClientOrder" extends="BaseResultMap">
|
|
|
+
|
|
|
+
|
|
|
+ <collection property="userOrderList"
|
|
|
+ ofType="com.izouma.awesomeadmin.model.UserOrder"
|
|
|
+ select="com.izouma.awesomeadmin.dao.UserOrderMapper.queryAllUserOrder"
|
|
|
+ column="{ clientOrderId = id }"/>
|
|
|
+
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+</mapper>
|
|
|
+
|