From eb16b9e6a0abca429a1e916e90a5df3afe0f960d Mon Sep 17 00:00:00 2001 From: Lionel <12719401+wisdom_woods@user.noreply.gitee.com> Date: 星期三, 09 八月 2023 10:47:25 +0800 Subject: [PATCH] !410 将部门管理 负责人选项改为下拉框选择 从当前部门的用户列表选择一个人做绑定 后端接收用户ID #I7R8CI * 将部门管理 负责人选项改为下拉框选择 --- script/sql/postgres/postgres_test.sql | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/script/sql/postgres/postgres_test.sql b/script/sql/postgres/postgres_test.sql index 0a7d3ff..179096b 100644 --- a/script/sql/postgres/postgres_test.sql +++ b/script/sql/postgres/postgres_test.sql @@ -2,7 +2,7 @@ create table if not exists test_demo ( id int8, - tenant_id varchar(20) not null, + tenant_id varchar(20) default '000000', dept_id int8, user_id int8, order_num int4 default 0, @@ -37,7 +37,7 @@ create table if not exists test_tree ( id int8, - tenant_id varchar(20) not null, + tenant_id varchar(20) default '000000', parent_id int8 default 0, dept_id int8, user_id int8, -- Gitblit v1.9.3