data.go 324 B

12345678910111213
  1. package data
  2. // HotArchiveRes hot recheck archive response
  3. type HotArchiveRes struct {
  4. Code int `json:"code"`
  5. Note bool `json:"note"`
  6. SourceDate string `json:"source_date"`
  7. Num int `json:"num"`
  8. List []struct {
  9. Aid int64 `json:"aid"`
  10. Score int `json:"score"`
  11. } `json:"list"`
  12. }