!433 更新登录日志以及在线用户展示信息

* update 更新登录日志, 在线用户展示信息(增加 客户端, 设备类型)
This commit is contained in:
MichelleChung
2023-10-23 01:28:11 +00:00
committed by 疯狂的狮子Li
parent f708492681
commit 29118ae78c
21 changed files with 148 additions and 0 deletions

View File

@ -0,0 +1,3 @@
ALTER TABLE sys_logininfor
ADD COLUMN client_key VARCHAR(32) NULL DEFAULT NULL COMMENT '客户端' AFTER `user_type`,
ADD COLUMN device_type VARCHAR(32) NULL DEFAULT NULL COMMENT '设备类型' AFTER `client_key`;