jiangshuai
2023-09-28 cf1b4c60a7005b1dcd2f7e5c4b2ce5ec01c7501e
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
}