bangumi.go 518 B

12345678910111213141516171819
  1. package service
  2. import (
  3. "context"
  4. "go-common/app/interface/main/spread/model"
  5. )
  6. // BangumiContent .
  7. func (s *Service) BangumiContent(c context.Context, pn, ps int, typ int8, appkey string) (res model.BangumiResp, err error) {
  8. res, err = s.dao.BangumiContent(c, pn, ps, typ, appkey)
  9. return
  10. }
  11. // BangumiOff .
  12. func (s *Service) BangumiOff(c context.Context, pn, ps int, typ int8, ts int64, appkey string) (res model.BangumiOffResp, err error) {
  13. res, err = s.dao.BangumiOff(c, pn, ps, typ, appkey, ts)
  14. return
  15. }