account.go 817 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package newbiedao
  2. import (
  3. "context"
  4. accApi "go-common/app/service/main/account/api"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. )
  8. // GetInfo get info
  9. func (d *Dao) GetInfo(c context.Context, mid int64) (res *accApi.InfoReply, err error) {
  10. res, err = d.accGRPC.Info3(c, &accApi.MidReq{Mid: mid})
  11. if err != nil {
  12. return
  13. }
  14. if res == nil || res.Info == nil {
  15. err = ecode.GrowupUpInfoNotExist
  16. log.Error("s.dao.GetInfo get up info is empty")
  17. return
  18. }
  19. return
  20. }
  21. // GetInfos get infos
  22. func (d *Dao) GetInfos(c context.Context, mids []int64) (res *accApi.InfosReply, err error) {
  23. res, err = d.accGRPC.Infos3(c, &accApi.MidsReq{Mids: mids})
  24. if err != nil {
  25. return
  26. }
  27. if res == nil {
  28. err = ecode.GrowupUpInfoNotExist
  29. log.Error("s.dao.GetInfos get ups info are empty")
  30. return
  31. }
  32. return
  33. }