Merge pull request '建表' (#78) from feature/cl into develop

Reviewed-on: http://221.226.25.34:3000/liang.cheng/weaver-hrm-organization/pulls/78
This commit is contained in:
liang.cheng 2022-11-25 17:36:51 +08:00
commit 665f3af816
1 changed files with 13 additions and 0 deletions

View File

@ -593,4 +593,17 @@ create table JCL_ORG_CARDBUTTON (
create_time date null,
update_time date null,
constraint JCL_ORG_CARDBUTTON_PK primary key (id)
);
--v2.0
-- JCl_ORG_RESOURCEEXTEND //id是人员ID 非自增
create table JCl_ORG_RESOURCEEXTEND (
id int not null,
scheme int null,
level_id int null,
grade int null,
sequence int null,
constraint JCl_ORG_RESOURCEEXTEND_PK primary key (id)
);