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.
15 lines
382 B
15 lines
382 B
package model |
|
|
|
// RankRecentRegion 分区排行榜 |
|
type RankRecentRegion struct { |
|
Aid int64 `json:"aid"` |
|
Mid int64 `json:"mid"` |
|
Others []*RankRecentRegion `json:"others"` |
|
} |
|
|
|
// RankRecentResp . |
|
type RankRecentResp struct { |
|
Code int32 `json:"code"` |
|
List []*RankRecentRegion `json:"list"` |
|
Num int32 `json:"num"` |
|
}
|
|
|