【7.1.6】更新user表的登录次数字段&application增加帐号错误次数校验

pull/83/MERGE
xixiaowei 2022-01-24 14:05:58 +08:00
parent 0ee6bec75d
commit 31b9184cba
2 changed files with 5 additions and 0 deletions

View File

@ -57,3 +57,7 @@ mybatis-plus:
# 单点登录开关
sso:
openFlag: false
# 帐号错误检测开关
login:
enable: true

View File

@ -0,0 +1 @@
ALTER TABLE `sys_user` ADD COLUMN `login_count` int NULL DEFAULT 1 COMMENT '登录次数' AFTER `status_flag`;