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

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,16 @@
create table fad_oa.sys_notice
(
notice_id bigint not null comment '公告ID'
primary key,
notice_title varchar(50) not null comment '公告标题',
notice_type char not null comment '公告类型1通知 2公告',
notice_content longblob null comment '公告内容',
status char default '0' null comment '公告状态0正常 1关闭',
create_by varchar(64) default '' null comment '创建者',
create_time datetime null comment '创建时间',
update_by varchar(64) default '' null comment '更新者',
update_time datetime null comment '更新时间',
remark varchar(255) null comment '备注'
)
comment '通知公告表' charset = utf8mb4;