liujiandao
2023-09-20 f3b1ba6c5d2f8f479b41e4e36093322d383b4e9c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package response
 
type StatsItem struct {
    Type  int
    Name  string
    Count int64
}
type StatsTotal struct {
    Name  string
    Count int64
}
type CommonStats struct {
    Total StatsTotal
    Items []StatsItem
}