cache.go 519 B

12345678910111213141516171819
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/esports/model"
  5. )
  6. //go:generate $GOPATH/src/go-common/app/tool/cache/gen
  7. type _cache interface {
  8. // cache
  9. EpContests(c context.Context, ids []int64) (map[int64]*model.Contest, error)
  10. // cache
  11. EpSeasons(c context.Context, ids []int64) (map[int64]*model.Season, error)
  12. // cache
  13. EpTeams(c context.Context, ids []int64) (map[int64]*model.Team, error)
  14. // cache
  15. EpContestsData(c context.Context, ids []int64) (map[int64][]*model.ContestsData, error)
  16. }