...
|
...
|
@@ -7,23 +7,24 @@ type OrderDetailRequest struct { |
|
|
type OrderDetailResponse struct {
|
|
|
Order interface{} `json:"order"`
|
|
|
}
|
|
|
|
|
|
//type OrderDetail struct {
|
|
|
// Id int64 `json:"id"`
|
|
|
// OrderNo string `json:"orderNo"`
|
|
|
// OrderName string `json:"orderName"`
|
|
|
// OrderStatus int `json:"orderStatus"`
|
|
|
// CreateTime int64 `json:"createTime"`
|
|
|
// UpdateTime int64 `json:"updateTime"`
|
|
|
// OrderQuantity int `json:"orderQuantity"`
|
|
|
// OrderAmount float64 `json:"orderAmount"`
|
|
|
// OrderAmountCancel float64 `json:"orderAmountCancel"`
|
|
|
// OrderUpdateReason string `json:"orderUpdateReason"`
|
|
|
// OrderDistrict interface{} `json:"orderDistrict"`
|
|
|
// Customer Customer `json:"customer"`
|
|
|
// MyDividend float64 `json:"myDividend"`
|
|
|
// MyDividendPercent float64 `json:"myDividendPercent"`
|
|
|
//}
|
|
|
type OrderDetail struct {
|
|
|
Id int64 `json:"id"`
|
|
|
OrderNo string `json:"orderNo"`
|
|
|
OrderName string `json:"orderName"`
|
|
|
OrderStatus int `json:"orderStatus"`
|
|
|
CreateTime int64 `json:"createTime"`
|
|
|
UpdateTime int64 `json:"updateTime"`
|
|
|
OrderQuantity int `json:"orderQuantity"`
|
|
|
OrderAmount float64 `json:"orderAmount"`
|
|
|
OrderAmountCancel float64 `json:"orderAmountCancel"`
|
|
|
OrderUpdateReason string `json:"orderUpdateReason"`
|
|
|
OrderDistrict interface{} `json:"orderDistrict"`
|
|
|
Customer Customer `json:"customer"`
|
|
|
MyDividend float64 `json:"myDividend"`
|
|
|
MyDividendPercent float64 `json:"myDividendPercent"`
|
|
|
}
|
|
|
type OrderDetailVO struct {
|
|
|
Id int64 `json:"id"`
|
|
|
OrderNo string `json:"orderNo"` //订单号
|
|
|
DeliveryNo string `json:"deliveryNo"` //发货单号
|
...
|
...
|
@@ -32,7 +33,7 @@ type OrderDetailVO struct { |
|
|
UpdateTime int64 `json:"updateTime"`
|
|
|
OrderDistrict interface{} `json:"orderDistrict"`
|
|
|
Customer Customer `json:"customer"`
|
|
|
Product interface{} `json:"product"`
|
|
|
Products interface{} `json:"products"`
|
|
|
Total interface{} `json:"total"`
|
|
|
}
|
|
|
type Customer struct {
|
...
|
...
|
|