1. 程式人生 > >基於WEB的線上招聘,java專案設計

基於WEB的線上招聘,java專案設計

**基於WEB的線上招聘,java專案設計** 基於WEB的線上招聘登入註冊介面

基於WEB的線上招聘mysql資料庫版本原始碼:

超級管理員表建立語句如下:


create table t_admin(
	id int primary key auto_increment comment '主鍵',
	username varchar(100) comment '超級管理員賬號',
	password varchar(100) comment '超級管理員密碼'
) comment '超級管理員';
insert into t_admin(username,password) values('admin','123456');

表建立語句如下:


create table t_customer(
	id int primary key auto_increment comment '主鍵',
	username varchar(100) comment '賬號',
	password varchar(100) comment '密碼',
	name varchar(100) comment '姓名',
	age varchar(100) comment '年齡',
	sex varchar(100) comment '性別',
	xlId int comment '學歷',
	gwId int comment '崗位',
	fwId int comment '薪水',
	content varchar(100) comment '簡介',
	fileUrl varchar(100) comment '詳細簡歷',
	huiyuan varchar(100) comment '是否會員',
	v1 varchar(100) comment '真實姓名',
	v2 varchar(100) comment '年齡',
	v3 varchar(100) comment '家庭住址',
	v4 varchar(100) comment '工作經驗',
	v5 varchar(100) comment '得獎描述',
	v6 varchar(100) comment '特長',
	v7 varchar(100) comment '愛好',
	v8 varchar(100) comment '期望薪資'
) comment '';

電子簡歷表建立語句如下:


create table t_dzjl(
	id int primary key auto_increment comment '主鍵',
	zpId int comment '招聘',
	customerId int comment '使用者'
) comment '電子簡歷';

表建立語句如下:


create table t_file_up(
	id int primary key auto_increment comment '主鍵',
	zpId int comment '',
	fileUrl varchar(100) comment ''
) comment '';

表建立語句如下:


create table t_fw(
	id int primary key auto_increment comment '主鍵',
	v1 varchar(100) comment '薪資範圍'
) comment '';

表建立語句如下:


create table t_gw(
	id int primary key auto_increment comment '主鍵',
	v1 varchar(100) comment '崗位'
) comment '';

工作地點表建立語句如下:


create table t_gzdd(
	id int primary key auto_increment comment '主鍵',
	v1 varchar(100) comment '工作地點'
) comment '工作地點';

工作經驗表建立語句如下:


create table t_gzjy(
	id int primary key auto_increment comment '主鍵',
	v1 varchar(100) comment '工作經驗'
) comment '工作經驗';

行業領域表建立語句如下:


create table t_hyly(
	id int primary key auto_increment comment '主鍵',
	v1 varchar(100) comment '行業領域'
) comment '行業領域';

交流表建立語句如下:


create table t_message(
	id int primary key auto_increment comment '主鍵',
	customerId int comment '應聘者',
	adminid int comment '招聘者',
	types int comment '型別',
	content varchar(100) comment '內容',
	insertDate datetime comment '時間'
) comment '交流';

表建立語句如下:


create table t_xl(
	id int primary key auto_increment comment '主鍵',
	v1 varchar(100) comment '學歷'
) comment '';

表建立語句如下:


create table t_zp(
	id int primary key auto_increment comment '主鍵',
	xlId int comment '學歷',
	gwId int comment '崗位',
	fwId int comment '薪水',
	title varchar(100) comment '公司名稱',
	content varchar(100) comment '公司簡介',
	number varchar(100) comment '招聘人數',
	address varchar(100) comment '公司地點',
	huiyuan varchar(100) comment '是否會員才能檢視',
	jn varchar(100) comment '技能說明',
	gzddId int comment '',
	gzjyId int comment '',
	hylyId int comment '',
	adminId int comment ''
) comment '';

基於WEB的線上招聘oracle資料庫版本原始碼:

超級管理員表建立語句如下:


create table t_admin(
	id integer,
	username varchar(100),
	password varchar(100)
);
insert into t_admin(id,username,password) values(1,'admin','123456');
--超級管理員欄位加註釋
comment on column t_admin.id is '主鍵';
comment on column t_admin.username is '超級管理員賬號';
comment on column t_admin.password is '超級管理員密碼';
--超級管理員表加註釋
comment on table t_admin is '超級管理員';

表建立語句如下:


create table t_customer(
	id integer,
	username varchar(100),
	password varchar(100),
	name varchar(100),
	age varchar(100),
	sex varchar(100),
	xlId int,
	gwId int,
	fwId int,
	content varchar(100),
	fileUrl varchar(100),
	huiyuan varchar(100),
	v1 varchar(100),
	v2 varchar(100),
	v3 varchar(100),
	v4 varchar(100),
	v5 varchar(100),
	v6 varchar(100),
	v7 varchar(100),
	v8 varchar(100)
);
--欄位加註釋
comment on column t_customer.id is '主鍵';
comment on column t_customer.username is '賬號';
comment on column t_customer.password is '密碼';
comment on column t_customer.name is '姓名';
comment on column t_customer.age is '年齡';
comment on column t_customer.sex is '性別';
comment on column t_customer.xlId is '學歷';
comment on column t_customer.gwId is '崗位';
comment on column t_customer.fwId is '薪水';
comment on column t_customer.content is '簡介';
comment on column t_customer.fileUrl is '詳細簡歷';
comment on column t_customer.huiyuan is '是否會員';
comment on column t_customer.v1 is '真實姓名';
comment on column t_customer.v2 is '年齡';
comment on column t_customer.v3 is '家庭住址';
comment on column t_customer.v4 is '工作經驗';
comment on column t_customer.v5 is '得獎描述';
comment on column t_customer.v6 is '特長';
comment on column t_customer.v7 is '愛好';
comment on column t_customer.v8 is '期望薪資';
--表加註釋
comment on table t_customer is '';

電子簡歷表建立語句如下:


create table t_dzjl(
	id integer,
	zpId int,
	customerId int
);
--電子簡歷欄位加註釋
comment on column t_dzjl.id is '主鍵';
comment on column t_dzjl.zpId is '招聘';
comment on column t_dzjl.customerId is '使用者';
--電子簡歷表加註釋
comment on table t_dzjl is '電子簡歷';

表建立語句如下:


create table t_file_up(
	id integer,
	zpId int,
	fileUrl varchar(100)
);
--欄位加註釋
comment on column t_file_up.id is '主鍵';
comment on column t_file_up.zpId is '';
comment on column t_file_up.fileUrl is '';
--表加註釋
comment on table t_file_up is '';

表建立語句如下:


create table t_fw(
	id integer,
	v1 varchar(100)
);
--欄位加註釋
comment on column t_fw.id is '主鍵';
comment on column t_fw.v1 is '薪資範圍';
--表加註釋
comment on table t_fw is '';

表建立語句如下:


create table t_gw(
	id integer,
	v1 varchar(100)
);
--欄位加註釋
comment on column t_gw.id is '主鍵';
comment on column t_gw.v1 is '崗位';
--表加註釋
comment on table t_gw is '';

工作地點表建立語句如下:


create table t_gzdd(
	id integer,
	v1 varchar(100)
);
--工作地點欄位加註釋
comment on column t_gzdd.id is '主鍵';
comment on column t_gzdd.v1 is '工作地點';
--工作地點表加註釋
comment on table t_gzdd is '工作地點';

工作經驗表建立語句如下:


create table t_gzjy(
	id integer,
	v1 varchar(100)
);
--工作經驗欄位加註釋
comment on column t_gzjy.id is '主鍵';
comment on column t_gzjy.v1 is '工作經驗';
--工作經驗表加註釋
comment on table t_gzjy is '工作經驗';

行業領域表建立語句如下:


create table t_hyly(
	id integer,
	v1 varchar(100)
);
--行業領域欄位加註釋
comment on column t_hyly.id is '主鍵';
comment on column t_hyly.v1 is '行業領域';
--行業領域表加註釋
comment on table t_hyly is '行業領域';

交流表建立語句如下:


create table t_message(
	id integer,
	customerId int,
	adminid int,
	types int,
	content varchar(100),
	insertDate datetime
);
--交流欄位加註釋
comment on column t_message.id is '主鍵';
comment on column t_message.customerId is '應聘者';
comment on column t_message.adminid is '招聘者';
comment on column t_message.types is '型別';
comment on column t_message.content is '內容';
comment on column t_message.insertDate is '時間';
--交流表加註釋
comment on table t_message is '交流';

表建立語句如下:


create table t_xl(
	id integer,
	v1 varchar(100)
);
--欄位加註釋
comment on column t_xl.id is '主鍵';
comment on column t_xl.v1 is '學歷';
--表加註釋
comment on table t_xl is '';

表建立語句如下:


create table t_zp(
	id integer,
	xlId int,
	gwId int,
	fwId int,
	title varchar(100),
	content varchar(100),
	number varchar(100),
	address varchar(100),
	huiyuan varchar(100),
	jn varchar(100),
	gzddId int,
	gzjyId int,
	hylyId int,
	adminId int
);
--欄位加註釋
comment on column t_zp.id is '主鍵';
comment on column t_zp.xlId is '學歷';
comment on column t_zp.gwId is '崗位';
comment on column t_zp.fwId is '薪水';
comment on column t_zp.title is '公司名稱';
comment on column t_zp.content is '公司簡介';
comment on column t_zp.number is '招聘人數';
comment on column t_zp.address is '公司地點';
comment on column t_zp.huiyuan is '是否會員才能檢視';
comment on column t_zp.jn is '技能說明';
comment on column t_zp.gzddId is '';
comment on column t_zp.gzjyId is '';
comment on column t_zp.hylyId is '';
comment on column t_zp.adminId is '';
--表加註釋
comment on table t_zp is '';

oracle特有,對應序列如下:


create sequence s_t_customer;
create sequence s_t_dzjl;
create sequence s_t_file_up;
create sequence s_t_fw;
create sequence s_t_gw;
create sequence s_t_gzdd;
create sequence s_t_gzjy;
create sequence s_t_hyly;
create sequence s_t_message;
create sequence s_t_xl;
create sequence s_t_zp;

基於WEB的線上招聘sqlserver資料庫版本原始碼:

超級管理員表建立語句如下:


--超級管理員
create table t_admin(
	id int identity(1,1) primary key not null,--主鍵
	username varchar(100),--超級管理員賬號
	password varchar(100)--超級管理員密碼
);
insert into t_admin(username,password) values('admin','123456');

表建立語句如下:


--表註釋
create table t_customer(
	id int identity(1,1) primary key not null,--主鍵
	username varchar(100),--賬號
	password varchar(100),--密碼
	name varchar(100),--姓名
	age varchar(100),--年齡
	sex varchar(100),--性別
	xlId int,--學歷
	gwId int,--崗位
	fwId int,--薪水
	content varchar(100),--簡介
	fileUrl varchar(100),--詳細簡歷
	huiyuan varchar(100),--是否會員
	v1 varchar(100),--真實姓名
	v2 varchar(100),--年齡
	v3 varchar(100),--家庭住址
	v4 varchar(100),--工作經驗
	v5 varchar(100),--得獎描述
	v6 varchar(100),--特長
	v7 varchar(100),--愛好
	v8 varchar(100)--期望薪資
);

電子簡歷表建立語句如下:


--電子簡歷表註釋
create table t_dzjl(
	id int identity(1,1) primary key not null,--主鍵
	zpId int,--招聘
	customerId int--使用者
);

表建立語句如下:


--表註釋
create table t_file_up(
	id int identity(1,1) primary key not null,--主鍵
	zpId int,--
	fileUrl varchar(100)--
);

表建立語句如下:


--表註釋
create table t_fw(
	id int identity(1,1) primary key not null,--主鍵
	v1 varchar(100)--薪資範圍
);

表建立語句如下:


--表註釋
create table t_gw(
	id int identity(1,1) primary key not null,--主鍵
	v1 varchar(100)--崗位
);

工作地點表建立語句如下:


--工作地點表註釋
create table t_gzdd(
	id int identity(1,1) primary key not null,--主鍵
	v1 varchar(100)--工作地點
);

工作經驗表建立語句如下:


--工作經驗表註釋
create table t_gzjy(
	id int identity(1,1) primary key not null,--主鍵
	v1 varchar(100)--工作經驗
);

行業領域表建立語句如下:


--行業領域表註釋
create table t_hyly(
	id int identity(1,1) primary key not null,--主鍵
	v1 varchar(100)--行業領域
);

交流表建立語句如下:


--交流表註釋
create table t_message(
	id int identity(1,1) primary key not null,--主鍵
	customerId int,--應聘者
	adminid int,--招聘者
	types int,--型別
	content varchar(100),--內容
	insertDate datetime--時間
);

表建立語句如下:


--表註釋
create table t_xl(
	id int identity(1,1) primary key not null,--主鍵
	v1 varchar(100)--學歷
);

表建立語句如下:


--表註釋
create table t_zp(
	id int identity(1,1) primary key not null,--主鍵
	xlId int,--學歷
	gwId int,--崗位
	fwId int,--薪水
	title varchar(100),--公司名稱
	content varchar(100),--公司簡介
	number varchar(100),--招聘人數
	address varchar(100),--公司地點
	huiyuan varchar(100),--是否會員才能檢視
	jn varchar(100),--技能說明
	gzddId int,--
	gzjyId int,--
	hylyId int,--
	adminId int--
);

基於WEB的線上招聘登入後主頁

基於WEB的線上招聘spring springMVC hibernate框架物件(javaBean,pojo)設計:

javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//
@Table(name = "t_customer")
public class Customer {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//賬號
private String username;
//密碼
private String password;
//姓名
private String name;
//年齡
private String age;
//性別
private String sex;
//學歷
private Integer xlId;
//崗位
private Integer gwId;
//薪水
private Integer fwId;
//簡介
private String content;
//詳細簡歷
private String fileUrl;
//是否會員
private String huiyuan;
//真實姓名
private String v1;
//年齡
private String v2;
//家庭住址
private String v3;
//工作經驗
private String v4;
//得獎描述
private String v5;
//特長
private String v6;
//愛好
private String v7;
//期望薪資
private String v8;
public String getUsername() {return username;}
public void setUsername(String username) {this.username = username;}
public String getPassword() {return password;}
public void setPassword(String password) {this.password = password;}
public String getName() {return name;}
public void setName(String name) {this.name = name;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public Integer getXlId() {return xlId;}
public void setXlId(Integer xlId) {this.xlId = xlId;}
public Integer getGwId() {return gwId;}
public void setGwId(Integer gwId) {this.gwId = gwId;}
public Integer getFwId() {return fwId;}
public void setFwId(Integer fwId) {this.fwId = fwId;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public String getHuiyuan() {return huiyuan;}
public void setHuiyuan(String huiyuan) {this.huiyuan = huiyuan;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
public String getV6() {return v6;}
public void setV6(String v6) {this.v6 = v6;}
public String getV7() {return v7;}
public void setV7(String v7) {this.v7 = v7;}
public String getV8() {return v8;}
public void setV8(String v8) {this.v8 = v8;}
}

電子簡歷javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//電子簡歷
@Table(name = "t_dzjl")
public class Dzjl {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//招聘
private Integer zpId;
//使用者
private Integer customerId;
public Integer getZpId() {return zpId;}
public void setZpId(Integer zpId) {this.zpId = zpId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
}

javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//
@Table(name = "t_file_up")
public class File_up {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//
private Integer zpId;
//
private String fileUrl;
public Integer getZpId() {return zpId;}
public void setZpId(Integer zpId) {this.zpId = zpId;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
}

javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//
@Table(name = "t_fw")
public class Fw {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//薪資範圍
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//
@Table(name = "t_gw")
public class Gw {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//崗位
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

工作地點javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//工作地點
@Table(name = "t_gzdd")
public class Gzdd {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//工作地點
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

工作經驗javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//工作經驗
@Table(name = "t_gzjy")
public class Gzjy {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//工作經驗
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

行業領域javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//行業領域
@Table(name = "t_hyly")
public class Hyly {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//行業領域
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

交流javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//交流
@Table(name = "t_message")
public class Message {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//應聘者
private Integer customerId;
//招聘者
private Integer adminid;
//型別
private Integer types;
//內容
private String content;
//時間
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getAdminid() {return adminid;}
public void setAdminid(Integer adminid) {this.adminid = adminid;}
public Integer getTypes() {return types;}
public void setTypes(Integer types) {this.types = types;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//
@Table(name = "t_xl")
public class Xl {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//學歷
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

javaBean建立語句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity
//
@Table(name = "t_zp")
public class Zp {
//主鍵
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//學歷
private Integer xlId;
//崗位
private Integer gwId;
//薪水
private Integer fwId;
//公司名稱
private String title;
//公司簡介
private String content;
//招聘人數
private String number;
//公司地點
private String address;
//是否會員才能檢視
private String huiyuan;
//技能說明
private String jn;
//
private Integer gzddId;
//
private Integer gzjyId;
//
private Integer hylyId;
//
private Integer adminId;
public Integer getXlId() {return xlId;}
public void setXlId(Integer xlId) {this.xlId = xlId;}
public Integer getGwId() {return gwId;}
public void setGwId(Integer gwId) {this.gwId = gwId;}
public Integer getFwId() {return fwId;}
public void setFwId(Integer fwId) {this.fwId = fwId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getNumber() {return number;}
public void setNumber(String number) {this.number = number;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getHuiyuan() {return huiyuan;}
public void setHuiyuan(String huiyuan) {this.huiyuan = huiyuan;}
public String getJn() {return jn;}
public void setJn(String jn) {this.jn = jn;}
public Integer getGzddId() {return gzddId;}
public void setGzddId(Integer gzddId) {this.gzddId = gzddId;}
public Integer getGzjyId() {return gzjyId;}
public void setGzjyId(Integer gzjyId) {this.gzjyId = gzjyId;}
public Integer getHylyId() {return hylyId;}
public void setHylyId(Integer hylyId) {this.hylyId = hylyId;}
public Integer getAdminId() {return adminId;}
public void setAdminId(Integer adminId) {this.adminId = adminId;}
}

基於WEB的線上招聘spring springMVC mybatis框架物件(javaBean,pojo)設計:

javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//
public class Customer  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//賬號
private String username;
//密碼
private String password;
//姓名
private String name;
//年齡
private String age;
//性別
private String sex;
//學歷
private Integer xlId;
//崗位
private Integer gwId;
//薪水
private Integer fwId;
//簡介
private String content;
//詳細簡歷
private String fileUrl;
//是否會員
private String huiyuan;
//真實姓名
private String v1;
//年齡
private String v2;
//家庭住址
private String v3;
//工作經驗
private String v4;
//得獎描述
private String v5;
//特長
private String v6;
//愛好
private String v7;
//期望薪資
private String v8;
public String getUsername() {return username;}
public void setUsername(String username) {this.username = username;}
public String getPassword() {return password;}
public void setPassword(String password) {this.password = password;}
public String getName() {return name;}
public void setName(String name) {this.name = name;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public Integer getXlId() {return xlId;}
public void setXlId(Integer xlId) {this.xlId = xlId;}
public Integer getGwId() {return gwId;}
public void setGwId(Integer gwId) {this.gwId = gwId;}
public Integer getFwId() {return fwId;}
public void setFwId(Integer fwId) {this.fwId = fwId;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public String getHuiyuan() {return huiyuan;}
public void setHuiyuan(String huiyuan) {this.huiyuan = huiyuan;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
public String getV6() {return v6;}
public void setV6(String v6) {this.v6 = v6;}
public String getV7() {return v7;}
public void setV7(String v7) {this.v7 = v7;}
public String getV8() {return v8;}
public void setV8(String v8) {this.v8 = v8;}
}

電子簡歷javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//電子簡歷
public class Dzjl  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//招聘
private Integer zpId;
//使用者
private Integer customerId;
public Integer getZpId() {return zpId;}
public void setZpId(Integer zpId) {this.zpId = zpId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
}

javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//
public class File_up  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//
private Integer zpId;
//
private String fileUrl;
public Integer getZpId() {return zpId;}
public void setZpId(Integer zpId) {this.zpId = zpId;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
}

javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//
public class Fw  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//薪資範圍
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//
public class Gw  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//崗位
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

工作地點javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//工作地點
public class Gzdd  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//工作地點
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

工作經驗javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//工作經驗
public class Gzjy  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//工作經驗
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

行業領域javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//行業領域
public class Hyly  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//行業領域
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

交流javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//交流
public class Message  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//應聘者
private Integer customerId;
//招聘者
private Integer adminid;
//型別
private Integer types;
//內容
private String content;
//時間
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getAdminid() {return adminid;}
public void setAdminid(Integer adminid) {this.adminid = adminid;}
public Integer getTypes() {return types;}
public void setTypes(Integer types) {this.types = types;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//
public class Xl  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//學歷
private String v1;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
}

javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//
public class Zp  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//學歷
private Integer xlId;
//崗位
private Integer gwId;
//薪水
private Integer fwId;
//公司名稱
private String title;
//公司簡介
private String content;
//招聘人數
private String number;
//公司地點
private String address;
//是否會員才能檢視
private String huiyuan;
//技能說明
private String jn;
//
private Integer gzddId;
//
private Integer gzjyId;
//
private Integer hylyId;
//
private Integer adminId;
public Integer getXlId() {return xlId;}
public void setXlId(Integer xlId) {this.xlId = xlId;}
public Integer getGwId() {return gwId;}
public void setGwId(Integer gwId) {this.gwId = gwId;}
public Integer getFwId() {return fwId;}
public void setFwId(Integer fwId) {this.fwId = fwId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getNumber() {return number;}
public void setNumber(String number) {this.number = number;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getHuiyuan() {return huiyuan;}
public void setHuiyuan(String huiyuan) {this.huiyuan = huiyuan;}
public String getJn() {return jn;}
public void setJn(String jn) {this.jn = jn;}
public Integer getGzddId() {return gzddId;}
public void setGzddId(Integer gzddId) {this.gzddId = gzddId;}
public Integer getGzjyId() {return gzjyId;}
public void setGzjyId(Integer gzjyId) {this.gzjyId = gzjyId;}
public Integer getHylyId() {return hylyId;}
public void setHylyId(Integer hylyId) {this.hylyId = hylyId;}
public Integer getAdminId() {return adminId;}
public void setAdminId(Integer adminId) {this.adminId = adminId;}
}