Files
fad_oa/script/sql/20241120表结构备份/sys_user_post.sql

9 lines
228 B
SQL

create table fad_oa.sys_user_post
(
user_id bigint not null comment '用户ID',
post_id bigint not null comment '岗位ID',
primary key (user_id, post_id)
)
comment '用户与岗位关联表' charset = utf8mb4;