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

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,12 @@
create table fad_oa.xxl_job_group
(
id int auto_increment
primary key,
app_name varchar(64) not null comment '执行器AppName',
title varchar(12) not null comment '执行器名称',
address_type tinyint default 0 not null comment '执行器地址类型0=自动注册、1=手动录入',
address_list text null comment '执行器地址列表,多地址逗号分隔',
update_time datetime null
)
charset = utf8mb4;