sfps
This commit is contained in:
@@ -293,20 +293,21 @@ type CreateOrderResp struct {
|
||||
ShopOrderID string `json:"shop_order_id"` //商家订单号
|
||||
PushTime int `json:"push_time"` //推送时间
|
||||
//以下字段受请求参数中 return_flag 控制:return_flag中未包含的,此字段将不存在,请注意!
|
||||
TotalPrice int `json:"total_price"` //配送费总额,当return_flag中包含1时返回,单位分(值为计算出来此单总价)
|
||||
DeliveryDistanceMeter int `json:"delivery_distance_meter"` //配送距离,当return_flag中包含2时返回,单位米(值为计算出来实际配送距离)
|
||||
WeightGram int `json:"weight_gram"` //商品重量,当return_flag中包含4时返回,单位克(值为下单传入参数回传)
|
||||
StartTime int `json:"start_time"` //起送时间,当return_flag中包含8时返回,时间格式为Unix时间戳,注意转换
|
||||
ExpectTime int `json:"expect_time"` //预计送达时间,当return_flag中包含16时返回,时间格式为Unix时间戳,注意转换
|
||||
TotalPayMoney int `json:"total_pay_money"` //支付费用,当return_flag中包含32时返回,单位分
|
||||
RealPayMoney int `json:"real_pay_money"` //实际支付金额,当return_flag中包含64时返回,单位分(实际支付金额=总金额-优惠券总金额)
|
||||
CouponsTotalFee int `json:"coupons_total_fee"` //优惠券总金额,当return_flag中包含128时返回,单位分
|
||||
SettlementType int `json:"settlement_type"` //结算方式,当return_flag中包含256时返回
|
||||
TotalPrice float64 `json:"total_price"` //配送费总额,当return_flag中包含1时返回,单位分(值为计算出来此单总价)
|
||||
DeliveryDistanceMeter float64 `json:"delivery_distance_meter"` //配送距离,当return_flag中包含2时返回,单位米(值为计算出来实际配送距离)
|
||||
WeightGram float64 `json:"weight_gram"` //商品重量,当return_flag中包含4时返回,单位克(值为下单传入参数回传)
|
||||
StartTime float64 `json:"start_time"` //起送时间,当return_flag中包含8时返回,时间格式为Unix时间戳,注意转换
|
||||
ExpectTime float64 `json:"expect_time"` //预计送达时间,当return_flag中包含16时返回,时间格式为Unix时间戳,注意转换
|
||||
TotalPayMoney float64 `json:"total_pay_money"` //支付费用,当return_flag中包含32时返回,单位分
|
||||
RealPayMoney float64 `json:"real_pay_money"` //实际支付金额,当return_flag中包含64时返回,单位分(实际支付金额=总金额-优惠券总金额)
|
||||
CouponsTotalFee float64 `json:"coupons_total_fee"` //优惠券总金额,当return_flag中包含128时返回,单位分
|
||||
SettlementType float64 `json:"settlement_type"` //结算方式,当return_flag中包含256时返回
|
||||
|
||||
PickUPCode int `json:"pick_up_code"` //取件码。在顺丰同城商户侧配置,配置后有此字段
|
||||
CompleteCode int `json:"complete_code"` //签收码。在顺丰同城商户侧配置,配置后有此字段
|
||||
OverflowFee int `json:"overflow_fee"` //爆单费,单位分
|
||||
InsureFee int `json:"insure_fee"` //保价费,单位分
|
||||
PickUPCode float64 `json:"pick_up_code"` //取件码。在顺丰同城商户侧配置,配置后有此字段
|
||||
CompleteCode float64 `json:"complete_code"` //签收码。在顺丰同城商户侧配置,配置后有此字段
|
||||
OverflowFee float64 `json:"overflow_fee"` //爆单费,单位分
|
||||
InsureFee float64 `json:"insure_fee"` //保价费,单位分
|
||||
SubsidyFee float64 `json:"subsidy_fee"`
|
||||
}
|
||||
|
||||
// PreCancelOrderReq 预取消订单
|
||||
|
||||
Reference in New Issue
Block a user