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

Reviewed-on: http://221.226.25.34:3000/liang.cheng/weaver-hrm-organization/pulls/19
This commit is contained in:
liang.cheng 2022-10-21 10:03:23 +08:00
commit 1708f8e821
3 changed files with 44 additions and 0 deletions

View File

@ -543,4 +543,18 @@ create table JCL_ORG_ITEM (
create_time date null,
update_time date null,
constraint JCL_ORG_ITEM_PK primary key (fid)
);
-- JCL_ORG_DETACH
create table JCL_ORG_DETACH (
id int auto_increment 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)
);

View File

@ -486,3 +486,19 @@ CREATE TABLE JCL_ORG_HRMRELATION (
UPDATE_TIME DATE NULL,
CONSTRAINT JCL_ORG_HRMRELATION_PK PRIMARY KEY (ID)
);
-- JCL_ORG_DETACH
create table JCL_ORG_DETACH (
id number not null,
type number null,
manger clob not null,
rolelevel clob not null,
module clob not null,
creator number null,
delete_type number null,
create_time date null,
update_time date null,
constraint JCL_ORG_DETACH_PK primary key (id)
);

View File

@ -516,4 +516,18 @@ CREATE TABLE JCL_ORG_MAP (
create_time date null,
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)
);