增加获取默认密码的方法

This commit is contained in:
wanggeng 2022-08-09 21:04:18 +08:00
parent b640d644cd
commit 36e5ebaffe
2 changed files with 12 additions and 0 deletions

View File

@ -348,4 +348,11 @@ public interface IUserService extends IUserBaseService, IUserCheckService {
*/
void isExpiredByToken(String token);
/**
* 获取默认的密码
*
* @return
*/
String getDefaultPassword();
}

View File

@ -800,6 +800,11 @@ public class UserServiceImpl extends DefaultBaseService implements IUserService
return userDao.list(params);
}
@Override
public String getDefaultPassword() {
return defaultPassword;
}
/**
* 更新mongo
*