账户锁定新增解锁功能

This commit is contained in:
cain
2019-10-08 15:35:36 +08:00
parent d1c5ec58df
commit f4ab77f80a
5 changed files with 30 additions and 2 deletions

View File

@ -83,4 +83,8 @@ public class SysPasswordService
return new Md5Hash(username + password + salt).toHex().toString();
}
public void unlock(String loginName){
loginRecordCache.remove(loginName);
}
}