coupon.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package vip
  2. import (
  3. "context"
  4. "go-common/app/interface/main/account/model"
  5. col "go-common/app/service/main/coupon/model"
  6. v1 "go-common/app/service/main/vip/api"
  7. vipml "go-common/app/service/main/vip/model"
  8. )
  9. // CouponBySuitID coupon by suit id.
  10. func (s *Service) CouponBySuitID(c context.Context, mid int64, sid int64) (res *col.CouponAllowancePanelInfo, err error) {
  11. res, err = s.vipRPC.CouponBySuitIDV2(c, &vipml.ArgCouponPanelV2{Mid: mid, Sid: sid})
  12. return
  13. }
  14. // CouponBySuitIDV2 get coupon by mid and suit info.
  15. func (s *Service) CouponBySuitIDV2(c context.Context, a *model.ArgCouponBySuitID) (res *v1.CouponBySuitIDReply, err error) {
  16. return s.vipgRPC.CouponBySuitID(c, &v1.CouponBySuitIDReq{
  17. Mid: a.Mid,
  18. Sid: a.Sid,
  19. MobiApp: a.MobiApp,
  20. Device: a.Device,
  21. Platform: a.Platform,
  22. PanelType: a.PanelType,
  23. Build: a.Build,
  24. })
  25. }
  26. // CouponsForPanel coupon for panel.
  27. func (s *Service) CouponsForPanel(c context.Context, mid int64, sid int64, platform string) (res *col.CouponAllowancePanelResp, err error) {
  28. res, err = s.vipRPC.CouponsForPanel(c, &vipml.ArgCouponPanel{Mid: mid, Sid: sid, Platform: vipml.PlatformByName[platform]})
  29. return
  30. }
  31. // CouponsForPanelV2 coupon for panel.
  32. func (s *Service) CouponsForPanelV2(c context.Context, mid int64, sid int64) (res *col.CouponAllowancePanelResp, err error) {
  33. res, err = s.vipRPC.CouponsForPanelV2(c, &vipml.ArgCouponPanelV2{Mid: mid, Sid: sid})
  34. return
  35. }
  36. // CancelUseCoupon coupon cancel use.
  37. func (s *Service) CancelUseCoupon(c context.Context, arg *vipml.ArgCancelUseCoupon) (err error) {
  38. err = s.vipDao.CancelUseCoupon(c, arg)
  39. return
  40. }