java畢業設計_網絡招聘管理系統

基於java的java在線招聘管理系統mysql數據庫創建語句
基於java的java在線招聘管理系統oracle數據庫創建語句
基於java的java在線招聘管理系統sqlserver數據庫創建語句
基於java的java在線招聘管理系統spring+springMVC+hibernate框架對象(javaBean,pojo)設計
基於java的java在線招聘管理系統spring+springMVC+mybatis框架對象(javaBean,pojo)設計
基於java的java在線招聘管理系統登錄註冊界面
基於java的java在線招聘管理系統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’);
SQLCopy
表創建語句如下:

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 ‘’;
SQLCopy
電子簡歷表創建語句如下:

create table t_dzjl(
id int primary key auto_increment comment ‘主鍵’,
zpId int comment ‘招聘’,
customerId int comment ‘用戶’
) comment ‘電子簡歷’;
SQLCopy
表創建語句如下:

create table t_file_up(
id int primary key auto_increment comment ‘主鍵’,
zpId int comment ‘’,
fileUrl varchar(100) comment ‘’
) comment ‘’;
SQLCopy
表創建語句如下:

create table t_fw(
id int primary key auto_increment comment ‘主鍵’,
v1 varchar(100) comment ‘薪資範圍’
) comment ‘’;
SQLCopy
表創建語句如下:

create table t_gw(
id int primary key auto_increment comment ‘主鍵’,
v1 varchar(100) comment ‘崗位’
) comment ‘’;
SQLCopy
工作地點表創建語句如下:

create table t_gzdd(
id int primary key auto_increment comment ‘主鍵’,
v1 varchar(100) comment ‘工作地點’
) comment ‘工作地點’;
SQLCopy
工作經驗表創建語句如下:

create table t_gzjy(
id int primary key auto_increment comment ‘主鍵’,
v1 varchar(100) comment ‘工作經驗’
) comment ‘工作經驗’;
SQLCopy
行業領域表創建語句如下:

create table t_hyly(
id int primary key auto_increment comment ‘主鍵’,
v1 varchar(100) comment ‘行業領域’
) comment ‘行業領域’;
SQLCopy
交流表創建語句如下:

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 ‘交流’;
SQLCopy
表創建語句如下:

create table t_xl(
id int primary key auto_increment comment ‘主鍵’,
v1 varchar(100) comment ‘學歷’
) comment ‘’;
SQLCopy
表創建語句如下:

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 ‘’;
SQLCopy
基於java的java在線招聘管理系統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 ‘超級管理員’;
SQLCopy
表創建語句如下:

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 ‘’;
SQLCopy
電子簡歷表創建語句如下:

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 ‘電子簡歷’;
SQLCopy
表創建語句如下:

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 ‘’;
SQLCopy
表創建語句如下:

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 ‘’;
SQLCopy
表創建語句如下:

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 ‘’;
SQLCopy
工作地點表創建語句如下:

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 ‘工作地點’;
SQLCopy
工作經驗表創建語句如下:

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 ‘工作經驗’;
SQLCopy
行業領域表創建語句如下:

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 ‘行業領域’;
SQLCopy
交流表創建語句如下:

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 ‘交流’;
SQLCopy
表創建語句如下:

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 ‘’;
SQLCopy
表創建語句如下:

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 ‘’;
SQLCopy
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;
SQLCopy
基於java的java在線招聘管理系統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’);
SQLCopy
表創建語句如下:

–表註釋
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)–期望薪資
);
SQLCopy
電子簡歷表創建語句如下:

–電子簡歷表註釋
create table t_dzjl(
id int identity(1,1) primary key not null,–主鍵
zpId int,–招聘
customerId int–用戶
);
SQLCopy
表創建語句如下:

–表註釋
create table t_file_up(
id int identity(1,1) primary key not null,–主鍵
zpId int,–
fileUrl varchar(100)–
);
SQLCopy
表創建語句如下:

–表註釋
create table t_fw(
id int identity(1,1) primary key not null,–主鍵
v1 varchar(100)–薪資範圍
);
SQLCopy
表創建語句如下:

–表註釋
create table t_gw(
id int identity(1,1) primary key not null,–主鍵
v1 varchar(100)–崗位
);
SQLCopy
工作地點表創建語句如下:

–工作地點表註釋
create table t_gzdd(
id int identity(1,1) primary key not null,–主鍵
v1 varchar(100)–工作地點
);
SQLCopy
工作經驗表創建語句如下:

–工作經驗表註釋
create table t_gzjy(
id int identity(1,1) primary key not null,–主鍵
v1 varchar(100)–工作經驗
);
SQLCopy
行業領域表創建語句如下:

–行業領域表註釋
create table t_hyly(
id int identity(1,1) primary key not null,–主鍵
v1 varchar(100)–行業領域
);
SQLCopy
交流表創建語句如下:

–交流表註釋
create table t_message(
id int identity(1,1) primary key not null,–主鍵
customerId int,–應聘者
adminid int,–招聘者
types int,–類型
content varchar(100),–內容
insertDate datetime–時間
);
SQLCopy
表創建語句如下:

–表註釋
create table t_xl(
id int identity(1,1) primary key not null,–主鍵
v1 varchar(100)–學歷
);
SQLCopy
表創建語句如下:

–表註釋
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–
);
SQLCopy
基於java的java在線招聘管理系統登錄後主頁
基於java的java在線招聘管理系統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;}
}
JavaCopy
電子簡歷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;}
}
JavaCopy
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;}
}
JavaCopy
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;}
}
JavaCopy
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;}
}
JavaCopy
工作地點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;}
}
JavaCopy
工作經驗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;}
}
JavaCopy
行業領域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;}
}
JavaCopy
交流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;}
}
JavaCopy
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;}
}
JavaCopy
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;}
}
JavaCopy
基於java的java在線招聘管理系統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;}
}
JavaCopy
電子簡歷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;}
}
JavaCopy
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;}
}
JavaCopy
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;}
}
JavaCopy
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;}
}
JavaCopy
工作地點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;}
}
JavaCopy
工作經驗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;}
}
JavaCopy
行業領域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;}
}
JavaCopy
交流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;}
}
JavaCopy
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;}
}
JavaCopy
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;}
}
 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章