...
|
...
|
@@ -22,12 +22,13 @@ |
|
|
<result column="seller_delivery_deal" jdbcType="INTEGER" property="sellerDeliveryDeal" />
|
|
|
<result column="seller_delivery_deal_again" jdbcType="INTEGER" property="sellerDeliveryDealAgain" />
|
|
|
<result column="activity_type" jdbcType="INTEGER" property="activityType" />
|
|
|
<result column="business_client" jdbcType="INTEGER" property="businessClient" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="Base_Column_List">
|
|
|
id, uid, order_code, seller_uid, client_type, payment, payment_type, is_cancel,
|
|
|
amount, ship_fee, status, create_time, update_time, channel_no, attributes ,platform_delivery_status,
|
|
|
seller_delivery_status,seller_delivery_deal,seller_delivery_deal_again,activity_type
|
|
|
seller_delivery_status,seller_delivery_deal,seller_delivery_deal_again,activity_type,business_client
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectByOrderCode" resultMap="BaseResultMap">
|
...
|
...
|
@@ -226,6 +227,9 @@ |
|
|
and a.attributes != 9
|
|
|
and c.attributes!=9
|
|
|
</if>
|
|
|
<if test="buyerOrderReq.business_client != null">
|
|
|
and a.business_client = #{buyerOrderReq.businessClient}
|
|
|
</if>
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTotalByCondition" resultType="java.lang.Integer" parameterType="com.yoho.order.model.BuyerOrderReq">
|
...
|
...
|
|