|
|
@ -267,13 +267,14 @@ func (o *order) InfoByOrderId(ctx context.Context, orderId uint) (reply InfoByOr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ReplySubmitData struct {
|
|
|
|
type ReplySubmitData struct {
|
|
|
|
OrderSn string `json:"orderSn"`
|
|
|
|
OrderSn string `json:"orderSn"`
|
|
|
|
Status int64 `json:"status"`
|
|
|
|
Status int64 `json:"status"`
|
|
|
|
OrderFee decimal.Decimal `json:"orderFee"`
|
|
|
|
OrderFee decimal.Decimal `json:"orderFee"`
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"`
|
|
|
|
SupplyOrderFee decimal.Decimal `json:"supplyOrderFee"`
|
|
|
|
LadingBillAt int64 `json:"ladingBillAt"`
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"`
|
|
|
|
Skus []ReplySubmitDataSku `json:"skus"`
|
|
|
|
LadingBillAt int64 `json:"ladingBillAt"`
|
|
|
|
OrderSubs []ReplySubmitDataOrderSub `json:"orderSubs"`
|
|
|
|
Skus []ReplySubmitDataSku `json:"skus"`
|
|
|
|
|
|
|
|
OrderSubs []ReplySubmitDataOrderSub `json:"orderSubs"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
type ReplySubmitDataOrderSub struct {
|
|
|
|
type ReplySubmitDataOrderSub struct {
|
|
|
|
OrderSubSn uint64 `json:"orderSubSn"`
|
|
|
|
OrderSubSn uint64 `json:"orderSubSn"`
|
|
|
@ -291,6 +292,7 @@ type ReplySubmitDataSku struct {
|
|
|
|
SupplyPrice decimal.Decimal `json:"supplyPrice"`
|
|
|
|
SupplyPrice decimal.Decimal `json:"supplyPrice"`
|
|
|
|
GuidePrice decimal.Decimal `json:"guidePrice"`
|
|
|
|
GuidePrice decimal.Decimal `json:"guidePrice"`
|
|
|
|
Amount decimal.Decimal `json:"amount"`
|
|
|
|
Amount decimal.Decimal `json:"amount"`
|
|
|
|
|
|
|
|
SourceSkuId string `json:"sourceSkuId"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// SubmitData @Title 订单下单数据
|
|
|
|
// SubmitData @Title 订单下单数据
|
|
|
|