feat: Log Util
This commit is contained in:
@@ -20,7 +20,8 @@ CREATE TABLE `app_admin_user` (
|
||||
`last_login_time` datetime NOT NULL COMMENT '最后登录时间',
|
||||
`is_del` tinyint(1) NOT NULL DEFAULT '1' COMMENT '用户状态 1 正常 2 删除 涉及到后台操作日志表',
|
||||
`role_id` tinyint(1) NOT NULL DEFAULT '0' COMMENT '角色',
|
||||
`create_time` datetime NOT NULL COMMENT '创建时间',
|
||||
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
||||
`update_time` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='后台用户表';
|
||||
|
||||
@@ -32,6 +33,7 @@ CREATE TABLE `app_admin_role` (
|
||||
`remark` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '备注',
|
||||
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1=正常 2=禁用',
|
||||
`create_time` datetime DEFAULT NULL,
|
||||
`update_time` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user