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

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_log_report
(
id int auto_increment
primary key,
trigger_day datetime null comment '调度-时间',
running_count int default 0 not null comment '运行中-日志数量',
suc_count int default 0 not null comment '执行成功-日志数量',
fail_count int default 0 not null comment '执行失败-日志数量',
update_time datetime null,
constraint i_trigger_day
unique (trigger_day)
)
charset = utf8mb4;