package accountlogic import ( "context" "app-cloudep-member-server/gen_result/pb/member" "app-cloudep-member-server/internal/svc" "github.com/zeromicro/go-zero/core/logx" ) type BindVerifyPhoneLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewBindVerifyPhoneLogic(ctx context.Context, svcCtx *svc.ServiceContext) *BindVerifyPhoneLogic { return &BindVerifyPhoneLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // BindVerifyPhone 綁定 Phone func (l *BindVerifyPhoneLogic) BindVerifyPhone(in *member.BindVerifyPhoneReq) (*member.OKResp, error) { // todo: add your logic here and delete this line return &member.OKResp{}, nil }