From f6a6a2efb7f97e1547ad09c9f544fca172a95b1e Mon Sep 17 00:00:00 2001 From: Wales Yu Date: Sat, 17 Jul 2021 11:16:34 +0800 Subject: [PATCH] =?UTF-8?q?fixed:=20=E6=B7=BB=E5=8A=A0=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E8=A1=A8=20SQL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/swpu_info.sql | 12 ++++++++++++ sql/swpu_user.sql | 13 +++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 sql/swpu_info.sql create mode 100644 sql/swpu_user.sql diff --git a/sql/swpu_info.sql b/sql/swpu_info.sql new file mode 100644 index 0000000..0b54a2d --- /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 0000000..0970965 --- /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; -- Gitee