|
|
|
@ -517,3 +517,17 @@ CREATE TABLE JCL_ORG_MAP (
|
|
|
|
|
update_time date null,
|
|
|
|
|
CONSTRAINT JCL_ORG_MAP_PK PRIMARY KEY (id)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
-- JCL_ORG_DETACH
|
|
|
|
|
create table JCL_ORG_DETACH (
|
|
|
|
|
id int IDENTITY(1,1) not null,
|
|
|
|
|
type int null,
|
|
|
|
|
manger text not null,
|
|
|
|
|
rolelevel text not null,
|
|
|
|
|
module text not null,
|
|
|
|
|
creator int null,
|
|
|
|
|
delete_type int null,
|
|
|
|
|
create_time date null,
|
|
|
|
|
update_time date null,
|
|
|
|
|
constraint JCL_ORG_DETACH_PK primary key (id)
|
|
|
|
|
);
|