mingyang-admin-iot-app/api/internal/logic/user/pass_word_reset_logic.go

31 lines
635 B
Go

package user
import (
"context"
"mingyang-admin-app-api/internal/svc"
"mingyang-admin-app-api/internal/types"
"github.com/zeromicro/go-zero/core/logx"
)
type PassWordResetLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewPassWordResetLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PassWordResetLogic {
return &PassWordResetLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *PassWordResetLogic) PassWordReset(req *types.PassWordResetReq) (resp *types.BaseDataInfo, err error) {
// todo: add your logic here and delete this line
return
}