一对一聊天重构,期待群聊开发

This commit is contained in:
2024-11-21 17:31:08 +08:00
parent 446b669c75
commit d6b81d4559
185 changed files with 5034 additions and 88 deletions

View File

@@ -0,0 +1,13 @@
create table fad_oa.xxl_job_user
(
id int auto_increment
primary key,
username varchar(50) not null comment '账号',
password varchar(50) not null comment '密码',
role tinyint not null comment '角色0-普通用户、1-管理员',
permission varchar(255) null comment '权限执行器ID列表多个逗号分割',
constraint i_username
unique (username)
)
charset = utf8mb4;