去掉front端
This commit is contained in:
parent
672856ddfc
commit
2676081cd3
@ -2,8 +2,8 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cyl.manager.oms.mapper.AftersaleItemMapper">
|
||||
|
||||
<mapper namespace="com.wzj.soopin.order.mapper.AftersaleItemMapper">
|
||||
|
||||
<resultMap type="AftersaleItem" id="AftersaleItemResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="memberId" column="member_id"/>
|
||||
@ -47,7 +47,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<select id="selectByEntity" parameterType="AftersaleItem" resultMap="AftersaleItemResult">
|
||||
<include refid="selectAftersaleItemVo"/>
|
||||
<where>
|
||||
<where>
|
||||
<if test="memberId != null "> and member_id = #{memberId}</if>
|
||||
<if test="orderId != null "> and order_id = #{orderId}</if>
|
||||
<if test="orderItemId != null "> and order_item_id = #{orderItemId}</if>
|
||||
|
@ -2,8 +2,8 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cyl.manager.oms.mapper.AftersaleMapper">
|
||||
|
||||
<mapper namespace="com.wzj.soopin.order.mapper.AftersaleMapper">
|
||||
|
||||
<resultMap type="Aftersale" id="AftersaleResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="memberId" column="member_id"/>
|
||||
@ -34,7 +34,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<select id="selectByEntity" parameterType="Aftersale" resultMap="AftersaleResult">
|
||||
<include refid="selectAftersaleVo"/>
|
||||
<where>
|
||||
<where>
|
||||
<if test="memberId != null "> and member_id = #{memberId}</if>
|
||||
<if test="orderId != null "> and order_id = #{orderId}</if>
|
||||
<if test="returnAmount != null "> and return_amount = #{returnAmount}</if>
|
||||
|
@ -2,8 +2,8 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cyl.manager.oms.mapper.OrderDeliveryHistoryMapper">
|
||||
|
||||
<mapper namespace="com.wzj.soopin.order.mapper.OrderDeliveryHistoryMapper">
|
||||
|
||||
<resultMap type="OrderDeliveryHistory" id="OrderDeliveryHistoryResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="orderId" column="order_id"/>
|
||||
@ -25,7 +25,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<select id="selectByEntity" parameterType="OrderDeliveryHistory" resultMap="OrderDeliveryHistoryResult">
|
||||
<include refid="selectOrderDeliveryHistoryVo"/>
|
||||
<where>
|
||||
<where>
|
||||
<if test="orderId != null "> and order_id = #{orderId}</if>
|
||||
<if test="deliveryCompany != null and deliveryCompany != ''"> and delivery_company = #{deliveryCompany}</if>
|
||||
<if test="deliverySn != null and deliverySn != ''"> and delivery_sn = #{deliverySn}</if>
|
||||
|
@ -2,8 +2,8 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cyl.manager.oms.mapper.OrderItemMapper">
|
||||
|
||||
<mapper namespace="com.wzj.soopin.order.mapper.OrderItemMapper">
|
||||
|
||||
<resultMap type="OrderItem" id="OrderItemResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="orderId" column="order_id"/>
|
||||
@ -36,7 +36,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<select id="selectByEntity" parameterType="OrderItem" resultMap="OrderItemResult">
|
||||
<include refid="selectOrderItemVo"/>
|
||||
<where>
|
||||
<where>
|
||||
<if test="orderId != null "> and order_id = #{orderId}</if>
|
||||
<if test="productId != null "> and product_id = #{productId}</if>
|
||||
<if test="outProductId != null and outProductId != ''"> and out_product_id = #{outProductId}</if>
|
||||
|
@ -2,8 +2,8 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cyl.manager.oms.mapper.OrderMapper">
|
||||
|
||||
<mapper namespace="com.wzj.soopin.order.mapper.OrderMapper">
|
||||
|
||||
<resultMap type="Order" id="OrderResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="memberId" column="member_id"/>
|
||||
@ -60,7 +60,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<select id="selectByEntity" parameterType="Order" resultMap="OrderResult">
|
||||
<include refid="selectOrderVo"/>
|
||||
<where>
|
||||
<where>
|
||||
<if test="memberId != null "> and member_id = #{memberId}</if>
|
||||
<if test="memberUsername != null and memberUsername != ''"> and member_username like concat('%', #{memberUsername}, '%')</if>
|
||||
<if test="totalAmount != null "> and total_amount = #{totalAmount}</if>
|
||||
|
@ -2,8 +2,8 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cyl.manager.oms.mapper.OrderOperateHistoryMapper">
|
||||
|
||||
<mapper namespace="com.wzj.soopin.order.mapper.OrderOperateHistoryMapper">
|
||||
|
||||
<resultMap type="OrderOperateHistory" id="OrderOperateHistoryResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="orderId" column="order_id"/>
|
||||
@ -27,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<select id="selectByEntity" parameterType="OrderOperateHistory" resultMap="OrderOperateHistoryResult">
|
||||
<include refid="selectOrderOperateHistoryVo"/>
|
||||
<where>
|
||||
<where>
|
||||
<if test="orderId != null "> and order_id = #{orderId}</if>
|
||||
<if test="operateMan != null and operateMan != ''"> and operate_man = #{operateMan}</if>
|
||||
<if test="orderStatus != null "> and order_status = #{orderStatus}</if>
|
||||
|
@ -2,8 +2,8 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cyl.manager.oms.mapper.WechatPaymentHistoryMapper">
|
||||
|
||||
<mapper namespace="com.wzj.soopin.order.mapper.WechatPaymentHistoryMapper">
|
||||
|
||||
<resultMap type="WechatPaymentHistory" id="OmsWechatPaymentHistoryResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="paymentId" column="payment_id"/>
|
||||
@ -34,7 +34,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
|
||||
<select id="selectByEntity" parameterType="WechatPaymentHistory" resultMap="OmsWechatPaymentHistoryResult">
|
||||
<include refid="selectOmsWechatPaymentHistoryVo"/>
|
||||
<where>
|
||||
<where>
|
||||
<if test="paymentId != null and paymentId != ''"> and payment_id = #{paymentId}</if>
|
||||
<if test="memberId != null "> and member_id = #{memberId}</if>
|
||||
<if test="openid != null and openid != ''"> and openid = #{openid}</if>
|
||||
|
Loading…
x
Reference in New Issue
Block a user