Files
fad_oa/script/sql/20241120表结构备份/sys_logininfor.sql

16 lines
794 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

create table fad_oa.sys_logininfor
(
info_id bigint not null comment '访问ID'
primary key,
user_name varchar(50) default '' null comment '用户账号',
ipaddr varchar(128) default '' null comment '登录IP地址',
login_location varchar(255) default '' null comment '登录地点',
browser varchar(50) default '' null comment '浏览器类型',
os varchar(50) default '' null comment '操作系统',
status char default '0' null comment '登录状态0成功 1失败',
msg varchar(255) default '' null comment '提示消息',
login_time datetime null comment '访问时间'
)
comment '系统访问记录' charset = utf8mb4;