package user import ( "context" "mingyang-admin-app-rpc/internal/svc" "mingyang-admin-app-rpc/types/app" "github.com/zeromicro/go-zero/core/logx" ) type GetUserPcLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewGetUserPcLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetUserPcLogic { return &GetUserPcLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // C端用户详情 func (l *GetUserPcLogic) GetUserPc(in *app.IDReq) (*app.UserInfo, error) { // todo: add your logic here and delete this line return &app.UserInfo{}, nil }