|
@@ -60,10 +60,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="projectName" column="project_name"/>
|
|
|
<result property="businessName" column="business_name"/>
|
|
|
<result property="schoolName" column="school_name"/>
|
|
|
- <result property="categoryName" column="category_name"/>
|
|
|
+ <result property="salesman" column="salesman"/>
|
|
|
|
|
|
<result property="goodsPrice" column="goods_price"/>
|
|
|
<result property="goodsRealPrice" column="goods_real_price"/>
|
|
|
+ <result property="goodsRealPrice" column="goods_real_price"/>
|
|
|
|
|
|
<result property="idCard" column="id_card" typeHandler="com.zhongzheng.common.type.EncryptHandler"/>
|
|
|
<result property="telphone" column="telphone" typeHandler="com.zhongzheng.common.type.EncryptHandler"/>
|
|
@@ -108,6 +109,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
og.order_goods_id,
|
|
|
og.goods_real_price,
|
|
|
og.offline_refund_sign,
|
|
|
+ og.salesman,
|
|
|
u.telphone,
|
|
|
u.realname,
|
|
|
u.id_card,
|
|
@@ -165,6 +167,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="orderGoodsStatus == 1">
|
|
|
AND og.pay_status in (2,3,4) AND og.refund_status != 2
|
|
|
</if>
|
|
|
+ <if test="salesman != null and salesman != ''">
|
|
|
+ AND og.salesman like concat('%', #{salesman}, '%')
|
|
|
+ </if>
|
|
|
<if test="startTime != null">
|
|
|
AND o.create_time >= #{startTime}
|
|
|
</if>
|