pgc.go 616 B

1234567891011121314151617181920212223
  1. package web
  2. import (
  3. "context"
  4. "go-common/library/log"
  5. )
  6. // PgcFull pgc full .
  7. func (s *Service) PgcFull(ctx context.Context, tp int, pn, ps int64, source string) (res interface{}, err error) {
  8. if res, err = s.dao.PgcFull(ctx, tp, pn, ps, source); err != nil {
  9. log.Error("s.dao.PgcFull error(%v)", err)
  10. }
  11. return
  12. }
  13. // PgcIncre pgc incre .
  14. func (s *Service) PgcIncre(ctx context.Context, tp int, pn, ps, start, end int64, source string) (res interface{}, err error) {
  15. if res, err = s.dao.PgcIncre(ctx, tp, pn, ps, start, end, source); err != nil {
  16. log.Error("s.dao.PgcIncre error(%s)", err)
  17. }
  18. return
  19. }