tips.go 867 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package vip
  2. import (
  3. "context"
  4. "go-common/app/interface/main/account/model"
  5. vipmol "go-common/app/service/main/vip/model"
  6. "github.com/pkg/errors"
  7. )
  8. // Tips vip tips info.
  9. func (s *Service) Tips(c context.Context, req *model.TipsReq) (res *vipmol.TipsResp, err error) {
  10. var rs []*vipmol.TipsResp
  11. arg := &vipmol.ArgTips{
  12. Platform: req.Platform,
  13. Version: req.Version,
  14. Position: req.Position,
  15. }
  16. if rs, err = s.vipRPC.Tips(c, arg); err != nil {
  17. err = errors.WithStack(err)
  18. }
  19. if len(rs) > 0 {
  20. res = rs[0]
  21. }
  22. return
  23. }
  24. // TipsV2 vip tips info v2.
  25. func (s *Service) TipsV2(c context.Context, req *model.TipsReq) (res []*vipmol.TipsResp, err error) {
  26. arg := &vipmol.ArgTips{
  27. Platform: req.Platform,
  28. Version: req.Version,
  29. Position: req.Position,
  30. }
  31. if res, err = s.vipRPC.Tips(c, arg); err != nil {
  32. err = errors.WithStack(err)
  33. }
  34. return
  35. }