This commit is contained in:
Chengliang 2022-11-25 17:34:36 +08:00
parent 682a98764d
commit e754d6f8fe
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)
);