You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
package response
|
|
|
|
type DataPiece struct {
|
|
Value1 string `json:"value1"`
|
|
Value2 string `json:"value2"`
|
|
}
|
|
|
|
type DataStatisticsUser struct {
|
|
Money DataPiece `json:"money"` // 总销售额
|
|
Visit DataPiece `json:"visit"` // 访问量
|
|
PayNum DataPiece `json:"pay_num"` // 支付笔数
|
|
OrderNum DataPiece `json:"order_num"` // 订单数
|
|
}
|
|
|
|
type DataStatisticsInfluence struct {
|
|
MissionNum DataPiece `json:"mission_num"` // 任务数
|
|
PlatformNum DataPiece `json:"platform_num"` // 发布平台数
|
|
TransitReward DataPiece `json:"transit_reward"` // 在途佣金
|
|
UsedReward DataPiece `json:"used_reward"` // 可用佣金
|
|
}
|
|
|
|
type DataStatisticsStore struct {
|
|
MissionNum DataPiece `json:"mission_num"` // 任务数
|
|
GoodsNum DataPiece `json:"goods_num"` // 商品数
|
|
TransitReward DataPiece `json:"transit_reward"` // 在途佣金
|
|
UsedCash DataPiece `json:"used_cash"` // 可提金额
|
|
}
|
|
|
|
type DataStatistics struct {
|
|
User DataStatisticsUser `json:"user"` // 用户数据
|
|
Influence DataStatisticsInfluence `json:"influence"` // 网红数据
|
|
Store DataStatisticsStore `json:"store"` // 商家数据
|
|
}
|
|
|