memcache.go 519 B

1234567891011121314151617181920
  1. package pgc
  2. // SimpleEP is the structure of ep in mc
  3. type SimpleEP struct {
  4. ID int64 `json:"id"`
  5. EPID int `json:"epid"`
  6. SeasonID int `json:"season_id"`
  7. State int `json:"state"`
  8. Valid int `json:"valid"`
  9. IsDeleted int `json:"is_deleted"`
  10. NoMark int `json:"no_mark"`
  11. }
  12. // SimpleSeason is the structure of season in mc
  13. type SimpleSeason struct {
  14. ID int64 `json:"id"`
  15. IsDeleted int8 `json:"is_deleted"`
  16. Valid int `json:"valid"`
  17. Check int8 `json:"check"`
  18. }