1. 补全后端的其余模块

2. 新增用户管理多部门的逻辑
This commit is contained in:
chenbowen
2025-06-30 15:44:40 +08:00
parent fbd175cba0
commit 625ad8f46f
524 changed files with 1762 additions and 1323 deletions

View File

@@ -0,0 +1,8 @@
alter table "RUOYI-VUE-PRO".SYSTEM_DEPT
add IS_COMPANY BIT default 0 not null;
comment
on column "RUOYI-VUE-PRO".SYSTEM_DEPT.IS_COMPANY is '是否公司';
alter table "RUOYI-VUE-PRO".SYSTEM_DEPT
add IS_GROUP BIT default 0 not null;
comment
on column "RUOYI-VUE-PRO".SYSTEM_DEPT.IS_GROUP is '是否集团';