order.go
3.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package protocol
/*OrderDetail */
type OrderDetailRequest struct {
Id int64 `json:"id"`
}
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"` //订单号
DeliveryNo string `json:"deliveryNo"` //发货单号
OrderStatus int `json:"orderStatus"` //订单状态 1.待支付 2.已支付 3.已支付退货 4待支付退货
CreateTime int64 `json:"createTime"`
UpdateTime int64 `json:"updateTime"`
OrderDistrict interface{} `json:"orderDistrict"`
Customer Customer `json:"customer"`
Products interface{} `json:"products"`
Total interface{} `json:"total"`
}
type Customer struct {
Uname string `json:"uname"`
Phone string `json:"phone"`
}
/*OrderStatistics */
type OrderStatisticsRequest struct {
}
type OrderStatisticsResponse struct {
Statistics OrderStatics `json:"statistics"`
}
type OrderStatics struct {
TodayIntentionQuantity int `json:"-"` //今日新增意向订单
TodayIntentionMoney float64 `json:"-"` //今日新增意向订单金额
TodayRealQuantity int `json:"todayRealQuantity"` //今日新增实发订单
TodayRealMoney float64 `json:"todayRealMoney"` //今日新增实发订单金额
CumulativeQuantity int `json:"cumulativeQuantity"` //累计实发订单
CumulativeMoney float64 `json:"cumulativeMoney"` //累计实发订单金额
//v0.3.0 新增加
CareerPercent float64 `json:"careerPercent"` // 事业占比
BusinessPercent float64 `json:"businessPercent"` // 业务占比
DevelopPercent float64 `json:"developPercent"` // 研发占比
AppPercent float64 `json:"appPercent"` // 研发占比
BusinessMoney float64 `json:"businessMoney"` // 业务分红累计
}
/*OrderList */
type OrderListRequest struct {
StartTime int64 `json:"startTime"`
EndTime int64 `json:"endTime"`
OrderAction int `json:"orderAction"` //订单Action(0全部订单、1部分发货、2全部发货)
PageIndex int `json:"pageIndex"`
PageSize int `json:"pageSize" valid:"Required"`
OrderType int `json:"-"`
}
type OrderListResponse struct {
List []*OrderListItem `json:"list"`
Statistics map[string]interface{} `json:"-"`
Total int `json:"total"`
}
type OrderListItem struct {
//id
Id int64 `json:"id,omitempty"`
//订单类型
OrderType int `json:"orderType"`
//订单编号
OrderNo string `json:"-"`
//发货编号
DeliveryNo string `json:"deliveryNo"`
//订单名称
OrderName string `json:"-"`
//订单状态
OrderStatus int `json:"-"`
//实际订单数量
OrderActualCount int `json:"-"`
//订单金额
OrderAmount float64 `json:"orderAmount"`
UpdateTime int64 `json:"updateTime"`
//我的分红
MyDividend float64 `json:"dividendReceivable"`
//是否已读(0未读,1已读)
IsRead int `json:"isRead"`
}