rank_list.go 382 B

123456789101112131415
  1. package model
  2. // RankRecentRegion 分区排行榜
  3. type RankRecentRegion struct {
  4. Aid int64 `json:"aid"`
  5. Mid int64 `json:"mid"`
  6. Others []*RankRecentRegion `json:"others"`
  7. }
  8. // RankRecentResp .
  9. type RankRecentResp struct {
  10. Code int32 `json:"code"`
  11. List []*RankRecentRegion `json:"list"`
  12. Num int32 `json:"num"`
  13. }