|
|
@ -270,6 +270,7 @@ 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"`
|
|
|
|
|
|
|
|
SupplyOrderFee decimal.Decimal `json:"supplyOrderFee"`
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"`
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"`
|
|
|
|
LadingBillAt int64 `json:"ladingBillAt"`
|
|
|
|
LadingBillAt int64 `json:"ladingBillAt"`
|
|
|
|
Skus []ReplySubmitDataSku `json:"skus"`
|
|
|
|
Skus []ReplySubmitDataSku `json:"skus"`
|
|
|
@ -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 订单下单数据
|
|
|
|