zhangqian
2024-03-08 b0d1319422f0c0bf3c0a4d2ba2a91aaf5c9ae2da
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
}