diff --git a/sql/swpu_info.sql b/sql/swpu_info.sql new file mode 100644 index 0000000000000000000000000000000000000000..0b54a2d94e873530fe135c70a7ea74f8d90be715 --- /dev/null +++ b/sql/swpu_info.sql @@ -0,0 +1,12 @@ +create table swpu_info +( + id varchar(100) not null comment '主键ID' + primary key, + p_id int not null comment '联合ID', + contract_term double null comment '合同期限', + conversion_time date null comment '转正日期', + notWork_date date null comment '离职日期', + begin_contract date null comment '合同起始日期', + end_contract date null comment '合同终止日期', + work_age int null comment '工龄' +) charset = utf8; diff --git a/sql/swpu_user.sql b/sql/swpu_user.sql new file mode 100644 index 0000000000000000000000000000000000000000..0970965b847c3b243894eec5db1aba249ad3483b --- /dev/null +++ b/sql/swpu_user.sql @@ -0,0 +1,13 @@ +create table swpu_user +( + id varchar(100) not null comment '主键ID' + primary key, + department_id int null comment '所属部门', + job_level_id int null comment '职称ID', + posId int null comment '职位ID', + engage_form varchar(8) null comment '聘用形式', + specialty varchar(32) null comment '所属专业', + school varchar(32) null comment '毕业院校', + begin_date date null comment '入职日期', + work_id char(8) null comment '工号' +) charset = utf8;