get_credit_balance_by_id_logic.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package credit_balance
  2. import (
  3. "context"
  4. "github.com/suyuan32/simple-admin-core/rpc/types/core"
  5. "wechat-api/internal/svc"
  6. "wechat-api/internal/types"
  7. "wechat-api/internal/utils/dberrorhandler"
  8. "github.com/suyuan32/simple-admin-common/msg/errormsg"
  9. "github.com/suyuan32/simple-admin-common/utils/pointy"
  10. "github.com/zeromicro/go-zero/core/logx"
  11. )
  12. type GetCreditBalanceByIdLogic struct {
  13. ctx context.Context
  14. svcCtx *svc.ServiceContext
  15. logx.Logger
  16. }
  17. func NewGetCreditBalanceByIdLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetCreditBalanceByIdLogic {
  18. return &GetCreditBalanceByIdLogic{
  19. ctx: ctx,
  20. svcCtx: svcCtx,
  21. Logger: logx.WithContext(ctx),
  22. }
  23. }
  24. func (l *GetCreditBalanceByIdLogic) GetCreditBalanceById(req *types.IDReq) (*types.CreditBalanceInfoResp, error) {
  25. data, err := l.svcCtx.DB.CreditBalance.Get(l.ctx, req.Id)
  26. if err != nil {
  27. return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
  28. }
  29. bUserinfo := types.BUserInfo{}
  30. userInfo, _ := l.svcCtx.CoreRpc.GetUserById(l.ctx, &core.UUIDReq{Id: data.UserID})
  31. if userInfo != nil {
  32. bUserinfo.Nickname = userInfo.Nickname
  33. bUserinfo.Avatar = userInfo.Avatar
  34. bUserinfo.Username = userInfo.Username
  35. bUserinfo.UserId = userInfo.Id
  36. }
  37. return &types.CreditBalanceInfoResp{
  38. BaseDataInfo: types.BaseDataInfo{
  39. Code: 0,
  40. Msg: errormsg.Success,
  41. },
  42. Data: types.CreditBalanceInfo{
  43. BaseIDInfo: types.BaseIDInfo{
  44. Id: &data.ID,
  45. CreatedAt: pointy.GetPointer(data.CreatedAt.UnixMilli()),
  46. UpdatedAt: pointy.GetPointer(data.UpdatedAt.UnixMilli()),
  47. },
  48. UserId: &data.UserID,
  49. Balance: &data.Balance,
  50. Status: &data.Status,
  51. OrganizationId: &data.OrganizationID,
  52. User: bUserinfo,
  53. },
  54. }, nil
  55. }