用户重置密码

main
031026 2024-04-12 15:36:34 +08:00
commit 3e10029313
3 changed files with 2 additions and 3 deletions

View File

@ -20,6 +20,7 @@ import com.muyu.system.domain.resp.UserInfoResp;
import com.muyu.system.service.*; import com.muyu.system.service.*;
import org.apache.commons.lang3.ArrayUtils; import org.apache.commons.lang3.ArrayUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;

View File

@ -182,11 +182,11 @@ public interface SysUserService extends IService<SysUser> {
* *
* *
* @param user * @param user
*
* @return * @return
*/ */
public int resetPwd (SysUser user); public int resetPwd (SysUser user);
/** /**
* *
* *

View File

@ -50,7 +50,6 @@ public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> impl
private SysUserPostMapper userPostMapper; private SysUserPostMapper userPostMapper;
@Autowired @Autowired
private SysConfigService configService; private SysConfigService configService;
/** /**
* *
* *
@ -333,7 +332,6 @@ public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> impl
* *
* *
* @param user * @param user
*
* @return * @return
*/ */
@Override @Override