用户重置密码

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 org.apache.commons.lang3.ArrayUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;

View File

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

View File

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