用户重置密码
commit
3e10029313
|
@ -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;
|
||||
|
|
|
@ -182,11 +182,11 @@ public interface SysUserService extends IService<SysUser> {
|
|||
* 重置用户密码
|
||||
*
|
||||
* @param user 用户信息
|
||||
*
|
||||
* @return 结果
|
||||
*/
|
||||
public int resetPwd (SysUser user);
|
||||
|
||||
|
||||
/**
|
||||
* 重置用户密码
|
||||
*
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue