...
|
...
|
@@ -24,6 +24,7 @@ type OrderDetailResponse struct { |
|
|
// MyDividend float64 `json:"myDividend"`
|
|
|
// MyDividendPercent float64 `json:"myDividendPercent"`
|
|
|
//}
|
|
|
|
|
|
type OrderDetail struct {
|
|
|
Id int64 `json:"id"`
|
|
|
OrderNo string `json:"orderNo"` //订单号
|
...
|
...
|
@@ -36,6 +37,7 @@ type OrderDetail struct { |
|
|
Products interface{} `json:"products"`
|
|
|
Total interface{} `json:"total"`
|
|
|
}
|
|
|
|
|
|
type Customer struct {
|
|
|
Uname string `json:"uname"`
|
|
|
Phone string `json:"phone"`
|
...
|
...
|
@@ -110,8 +112,11 @@ type OrderListItem struct { |
|
|
OrderStatus int `json:"-"`
|
|
|
//实际订单数量
|
|
|
OrderActualCount int `json:"-"`
|
|
|
// 订单区域
|
|
|
OrderDistrict map[string]interface{} `json:"orderDistrict"`
|
|
|
//订单金额
|
|
|
OrderAmount float64 `json:"orderAmount"`
|
|
|
// 订单更新时间
|
|
|
UpdateTime int64 `json:"updateTime"`
|
|
|
//我的分红
|
|
|
MyDividend float64 `json:"dividendReceivable"`
|
...
|
...
|
|