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

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,14 @@
create table fad_oa.xxl_job_registry
(
id int auto_increment
primary key,
registry_group varchar(50) not null,
registry_key varchar(255) not null,
registry_value varchar(255) not null,
update_time datetime null
)
charset = utf8mb4;
create index i_g_k_v
on fad_oa.xxl_job_registry (registry_group, registry_key, registry_value);