feat: 完善仪表盘热门模块区块内容

1.完善仪表盘热门模块区块内容
2.sys_log 表增加 module 字段索引
3.优化总计区块图标
This commit is contained in:
2023-09-09 11:28:44 +08:00
parent 3440aa4faa
commit 83b2e2a7c0
27 changed files with 200 additions and 68 deletions

View File

@@ -133,6 +133,7 @@ CREATE TABLE IF NOT EXISTS `sys_log` (
`create_user` bigint(20) UNSIGNED DEFAULT NULL COMMENT '创建人',
`create_time` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_module`(`module`) USING BTREE,
INDEX `idx_client_ip`(`client_ip`) USING BTREE,
INDEX `idx_create_time`(`create_time`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='系统日志表';