...
|
...
|
@@ -22,11 +22,12 @@ |
|
|
<result column="platform_delivery_status" jdbcType="INTEGER" property="platformDeliveryStatus" />
|
|
|
<result column="seller_delivery_status" jdbcType="INTEGER" property="sellerDeliveryStatus" />
|
|
|
<result column="seller_delivery_deal" jdbcType="INTEGER" property="sellerDeliveryDeal" />
|
|
|
<result column="seller_delivery_deal_again" jdbcType="INTEGER" property="sellerDeliveryDealAgain" />
|
|
|
</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, buyer_order_status, seller_order_status, channel_no, attributes,platform_delivery_status,
|
|
|
seller_delivery_status,seller_delivery_deal
|
|
|
seller_delivery_status,seller_delivery_deal,seller_delivery_deal_again
|
|
|
</sql>
|
|
|
|
|
|
|
...
|
...
|
@@ -142,14 +143,14 @@ |
|
|
is_cancel, amount, ship_fee,
|
|
|
status, create_time, update_time,
|
|
|
buyer_order_status, seller_order_status, channel_no, attributes,platform_delivery_status,
|
|
|
seller_delivery_status,seller_delivery_deal)
|
|
|
seller_delivery_status,seller_delivery_deal,seller_delivery_deal_again)
|
|
|
values (#{uid,jdbcType=INTEGER}, #{orderCode,jdbcType=BIGINT}, #{sellerUid,jdbcType=INTEGER},
|
|
|
#{clientType,jdbcType=INTEGER}, #{payment,jdbcType=INTEGER}, #{paymentType,jdbcType=TINYINT},
|
|
|
#{isCancel,jdbcType=TINYINT}, #{amount,jdbcType=DECIMAL}, #{shipFee,jdbcType=DECIMAL},
|
|
|
#{status,jdbcType=INTEGER}, #{createTime,jdbcType=INTEGER}, #{updateTime,jdbcType=INTEGER},
|
|
|
#{buyerOrderStatus,jdbcType=INTEGER}, #{sellerOrderStatus,jdbcType=INTEGER}, #{channelNo,jdbcType=VARCHAR},
|
|
|
#{attributes,jdbcType=INTEGER},#{platformDeliveryStatus,jdbcType=INTEGER},
|
|
|
#{sellerDeliveryStatus,jdbcType=INTEGER},#{sellerDeliveryDeal,jdbcType=INTEGER})
|
|
|
#{sellerDeliveryStatus,jdbcType=INTEGER},#{sellerDeliveryDeal,jdbcType=INTEGER},#{sellerDeliveryDealAgain,jdbcType=INTEGER})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.yohoufo.dal.order.model.BuyerOrder" useGeneratedKeys="true">
|
|
|
insert into buyer_order
|
...
|
...
|
|