|
|
@ -140,18 +140,19 @@ type RetailOrderSearch struct {
|
|
|
|
|
|
|
|
|
|
|
|
type RetailOrderItem struct {
|
|
|
|
type RetailOrderItem struct {
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Id uint `json:"id"`
|
|
|
|
OrderSubSn string `json:"orderSubSn"`
|
|
|
|
OrderSn string `json:"orderSn"` // 原始订单号
|
|
|
|
SourceOrderSn string `json:"sourceOrderSn"`
|
|
|
|
OrderSubSn string `json:"orderSubSn"` // 订单号
|
|
|
|
SourceName string `json:"sourceName"`
|
|
|
|
SourceOrderSn string `json:"sourceOrderSn"` // 供应商订单号
|
|
|
|
CustomerName string `json:"customerName"`
|
|
|
|
SourceName string `json:"sourceName"` // 供应商名称
|
|
|
|
OrderStatus uint `json:"orderStatus"`
|
|
|
|
CustomerName string `json:"customerName"` // 客户名称
|
|
|
|
OrderFee decimal.Decimal `json:"orderFee"`
|
|
|
|
OrderStatus uint `json:"orderStatus"` // 订单状态
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"`
|
|
|
|
OrderFee decimal.Decimal `json:"orderFee"` // 订单金额
|
|
|
|
SupplyOrderFee decimal.Decimal `json:"supplyOrderFee"`
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"` // 运费
|
|
|
|
PayTime int64 `json:"payTime"`
|
|
|
|
SupplyOrderFee decimal.Decimal `json:"supplyOrderFee"` // 供应商订单金额
|
|
|
|
FinishAt int64 `json:"finishAt"`
|
|
|
|
PayTime int64 `json:"payTime"` // 支付时间
|
|
|
|
CloseAt int64 `json:"closeAt"`
|
|
|
|
FinishAt int64 `json:"finishAt"` // 完成时间
|
|
|
|
StockOutAt int64 `json:"stockOutAt"`
|
|
|
|
CloseAt int64 `json:"closeAt"` // 关闭时间
|
|
|
|
|
|
|
|
StockOutAt int64 `json:"stockOutAt"` // 发货时间
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ReplyRetailOrderLists struct {
|
|
|
|
type ReplyRetailOrderLists struct {
|
|
|
|