12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package credit_balance
- import (
- "context"
- "github.com/suyuan32/simple-admin-core/rpc/types/core"
- "wechat-api/internal/svc"
- "wechat-api/internal/types"
- "wechat-api/internal/utils/dberrorhandler"
- "github.com/suyuan32/simple-admin-common/msg/errormsg"
- "github.com/suyuan32/simple-admin-common/utils/pointy"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type GetCreditBalanceByIdLogic struct {
- ctx context.Context
- svcCtx *svc.ServiceContext
- logx.Logger
- }
- func NewGetCreditBalanceByIdLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetCreditBalanceByIdLogic {
- return &GetCreditBalanceByIdLogic{
- ctx: ctx,
- svcCtx: svcCtx,
- Logger: logx.WithContext(ctx),
- }
- }
- func (l *GetCreditBalanceByIdLogic) GetCreditBalanceById(req *types.IDReq) (*types.CreditBalanceInfoResp, error) {
- data, err := l.svcCtx.DB.CreditBalance.Get(l.ctx, req.Id)
- if err != nil {
- return nil, dberrorhandler.DefaultEntError(l.Logger, err, req)
- }
- bUserinfo := types.BUserInfo{}
- userInfo, _ := l.svcCtx.CoreRpc.GetUserById(l.ctx, &core.UUIDReq{Id: data.UserID})
- if userInfo != nil {
- bUserinfo.Nickname = userInfo.Nickname
- bUserinfo.Avatar = userInfo.Avatar
- bUserinfo.Username = userInfo.Username
- bUserinfo.UserId = userInfo.Id
- }
- return &types.CreditBalanceInfoResp{
- BaseDataInfo: types.BaseDataInfo{
- Code: 0,
- Msg: errormsg.Success,
- },
- Data: types.CreditBalanceInfo{
- BaseIDInfo: types.BaseIDInfo{
- Id: &data.ID,
- CreatedAt: pointy.GetPointer(data.CreatedAt.UnixMilli()),
- UpdatedAt: pointy.GetPointer(data.UpdatedAt.UnixMilli()),
- },
- UserId: &data.UserID,
- Balance: &data.Balance,
- Status: &data.Status,
- OrganizationId: &data.OrganizationID,
- User: bUserinfo,
- },
- }, nil
- }
|