增加获取默认密码的方法
This commit is contained in:
parent
b640d644cd
commit
36e5ebaffe
@ -348,4 +348,11 @@ public interface IUserService extends IUserBaseService, IUserCheckService {
|
|||||||
*/
|
*/
|
||||||
void isExpiredByToken(String token);
|
void isExpiredByToken(String token);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取默认的密码
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
String getDefaultPassword();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -800,6 +800,11 @@ public class UserServiceImpl extends DefaultBaseService implements IUserService
|
|||||||
return userDao.list(params);
|
return userDao.list(params);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getDefaultPassword() {
|
||||||
|
return defaultPassword;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新mongo
|
* 更新mongo
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user