This commit is contained in:
777
2025-10-20 14:20:46 +08:00
parent 34b6ff3a6c
commit e368d333ef
13 changed files with 194 additions and 7 deletions

2
doc/123.txt Normal file
View File

@@ -0,0 +1,2 @@
im权限
cai:user:im

View File

@@ -48,8 +48,8 @@ CREATE TABLE `cai_ops_count`
CREATE TABLE `cai_login_min_log`
(
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`login_date` date not null comment '登录时间',
`user_id` bigint(20) NOT NULL DEFAULT 0 COMMENT '用户',
`login_date` date comment '登录时间',
`user_id` bigint(20) DEFAULT 0 COMMENT '用户',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_date` (`user_id`, `login_date`) USING BTREE

4
doc/20251017.sql Normal file
View File

@@ -0,0 +1,4 @@
ALTER TABLE sys_notice
ADD COLUMN `business_type` varchar(20) COMMENT '业务类型',
ADD COLUMN `deal_by` varchar(100) COMMENT '处理人',
ADD COLUMN `deal_time` datetime COMMENT '处理时间';