Compare commits

..

No commits in common. 'bd04ae0f43f0dea0b9c30dfcb4411cc8177cd189' and '36bedabe8c0dcab00fe18b60d3644c852533d649' have entirely different histories.

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

Loading…
Cancel
Save