point.go 861 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package point
  2. import (
  3. "context"
  4. "go-common/app/interface/main/account/conf"
  5. "go-common/app/service/main/point/model"
  6. pointrpc "go-common/app/service/main/point/rpc/client"
  7. )
  8. // Service struct of service.
  9. type Service struct {
  10. // conf
  11. c *conf.Config
  12. // rpc
  13. pointRPC *pointrpc.Service
  14. }
  15. // New create service instance and return.
  16. func New(c *conf.Config) (s *Service) {
  17. s = &Service{
  18. c: c,
  19. pointRPC: pointrpc.New(c.RPCClient2.Point),
  20. }
  21. return
  22. }
  23. // PointInfo point info.
  24. func (s *Service) PointInfo(c context.Context, mid int64) (res *model.PointInfo, err error) {
  25. res, err = s.pointRPC.PointInfo(c, &model.ArgRPCMid{Mid: mid})
  26. return
  27. }
  28. // PointPage point page.
  29. func (s *Service) PointPage(c context.Context, a *model.ArgRPCPointHistory) (res *model.PointHistoryResp, err error) {
  30. res, err = s.pointRPC.PointHistory(c, a)
  31. return
  32. }