sug.go 188 B

123456789101112131415
  1. package model
  2. // Score ...
  3. type Score struct {
  4. SeasonID string
  5. SeasonName string
  6. Score float64
  7. }
  8. // Sug ...
  9. type Sug struct {
  10. Item *Item
  11. SeasonID int64
  12. Score int64
  13. }