一对一聊天重构,期待群聊开发
This commit is contained in:
16
script/sql/20241120表结构备份/sys_post.sql
Normal file
16
script/sql/20241120表结构备份/sys_post.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
create table fad_oa.sys_post
|
||||
(
|
||||
post_id bigint not null comment '岗位ID'
|
||||
primary key,
|
||||
post_code varchar(64) not null comment '岗位编码',
|
||||
post_name varchar(50) not null comment '岗位名称',
|
||||
post_sort int not null comment '显示顺序',
|
||||
status char not 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(500) null comment '备注'
|
||||
)
|
||||
comment '岗位信息表' charset = utf8mb4;
|
||||
|
||||
Reference in New Issue
Block a user