32 lines
664 B
Go
32 lines
664 B
Go
package logic
|
|
|
|
import (
|
|
"context"
|
|
|
|
"member/gen_result/pb/member"
|
|
"member/internal/svc"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type UpdateUserInfoLogic struct {
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
logx.Logger
|
|
}
|
|
|
|
func NewUpdateUserInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateUserInfoLogic {
|
|
return &UpdateUserInfoLogic{
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
Logger: logx.WithContext(ctx),
|
|
}
|
|
}
|
|
|
|
// UpdateUserInfo 更新 User Info
|
|
func (l *UpdateUserInfoLogic) UpdateUserInfo(in *member.UpdateUserInfoReq) (*member.Response, error) {
|
|
// todo: add your logic here and delete this line
|
|
|
|
return &member.Response{}, nil
|
|
}
|