java毕业设计_人力资源管理系统

在这里插入图片描述
人力资源管理系统mysql数据库创建语句
人力资源管理系统oracle数据库创建语句
人力资源管理系统sqlserver数据库创建语句
人力资源管理系统spring+springMVC+hibernate框架对象(javaBean,pojo)设计
人力资源管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计
人力资源管理系统登录注册界面
人力资源管理系统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_bm(
id int primary key auto_increment comment ‘主键’,
bmName varchar(100) comment ‘部门’
) comment ‘部门’;
SQLCopy
职工表创建语句如下:

create table t_customer(
id int primary key auto_increment comment ‘主键’,
username varchar(100) comment ‘账号’,
password varchar(100) comment ‘密码’,
customerName varchar(100) comment ‘姓名’,
headPic varchar(100) comment ‘头像’,
phone varchar(100) comment ‘电话’,
age varchar(100) comment ‘年龄’,
sex varchar(100) comment ‘性别’,
gh varchar(100) comment ‘工号’,
bmId int comment ‘部门’,
zwId int comment ‘职务’,
zcId int comment ‘职称’
) comment ‘职工’;
SQLCopy
奖励惩罚表创建语句如下:

create table t_jlcf(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘职工’,
types varchar(100) comment ‘奖励惩罚’,
title varchar(100) comment ‘标题’,
content varchar(100) comment ‘详细说明’,
pic varchar(100) comment ‘图片’,
fileUrl varchar(100) comment ‘附件’,
showDate datetime comment ‘日期’,
v5 varchar(100) comment ‘备注’
) comment ‘奖励惩罚’;
SQLCopy
任职经历表创建语句如下:

create table t_jtgx(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘职工’,
v1 varchar(100) comment ‘籍贯’,
v2 varchar(100) comment ‘是否已婚’,
v3 varchar(100) comment ‘子女介绍’,
v4 varchar(100) comment ‘父母介绍’,
v6 varchar(100) comment ‘家庭住址’,
v5 varchar(100) comment ‘备注’
) comment ‘任职经历’;
SQLCopy
任职经历表创建语句如下:

create table t_rzjl(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘职工’,
zw varchar(100) comment ‘职务说明’,
gs varchar(100) comment ‘公司’,
beginDate datetime comment ‘开始日期’,
endDate datetime comment ‘结束日期’,
v1 varchar(100) comment ‘详细说明’,
v2 varchar(100) comment ‘总结’
) comment ‘任职经历’;
SQLCopy
学习经历表创建语句如下:

create table t_xxjl(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘职工’,
beginDate datetime comment ‘开始日期’,
endDate datetime comment ‘结束日期’,
v1 varchar(100) comment ‘详细说明’,
v2 varchar(100) comment ‘总结’
) comment ‘学习经历’;
SQLCopy
职称表创建语句如下:

create table t_zc(
id int primary key auto_increment comment ‘主键’,
bmName varchar(100) comment ‘职称’
) comment ‘职称’;
SQLCopy
职务表创建语句如下:

create table t_zw(
id int primary key auto_increment comment ‘主键’,
bmName varchar(100) comment ‘植物’
) comment ‘职务’;
SQLCopy
人力资源管理系统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_bm(
id integer,
bmName varchar(100)
);
–部门字段加注释
comment on column t_bm.id is ‘主键’;
comment on column t_bm.bmName is ‘部门’;
–部门表加注释
comment on table t_bm is ‘部门’;
SQLCopy
职工表创建语句如下:

create table t_customer(
id integer,
username varchar(100),
password varchar(100),
customerName varchar(100),
headPic varchar(100),
phone varchar(100),
age varchar(100),
sex varchar(100),
gh varchar(100),
bmId int,
zwId int,
zcId int
);
–职工字段加注释
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.customerName is ‘姓名’;
comment on column t_customer.headPic is ‘头像’;
comment on column t_customer.phone is ‘电话’;
comment on column t_customer.age is ‘年龄’;
comment on column t_customer.sex is ‘性别’;
comment on column t_customer.gh is ‘工号’;
comment on column t_customer.bmId is ‘部门’;
comment on column t_customer.zwId is ‘职务’;
comment on column t_customer.zcId is ‘职称’;
–职工表加注释
comment on table t_customer is ‘职工’;
SQLCopy
奖励惩罚表创建语句如下:

create table t_jlcf(
id integer,
customerId int,
types varchar(100),
title varchar(100),
content varchar(100),
pic varchar(100),
fileUrl varchar(100),
showDate datetime,
v5 varchar(100)
);
–奖励惩罚字段加注释
comment on column t_jlcf.id is ‘主键’;
comment on column t_jlcf.customerId is ‘职工’;
comment on column t_jlcf.types is ‘奖励惩罚’;
comment on column t_jlcf.title is ‘标题’;
comment on column t_jlcf.content is ‘详细说明’;
comment on column t_jlcf.pic is ‘图片’;
comment on column t_jlcf.fileUrl is ‘附件’;
comment on column t_jlcf.showDate is ‘日期’;
comment on column t_jlcf.v5 is ‘备注’;
–奖励惩罚表加注释
comment on table t_jlcf is ‘奖励惩罚’;
SQLCopy
任职经历表创建语句如下:

create table t_jtgx(
id integer,
customerId int,
v1 varchar(100),
v2 varchar(100),
v3 varchar(100),
v4 varchar(100),
v6 varchar(100),
v5 varchar(100)
);
–任职经历字段加注释
comment on column t_jtgx.id is ‘主键’;
comment on column t_jtgx.customerId is ‘职工’;
comment on column t_jtgx.v1 is ‘籍贯’;
comment on column t_jtgx.v2 is ‘是否已婚’;
comment on column t_jtgx.v3 is ‘子女介绍’;
comment on column t_jtgx.v4 is ‘父母介绍’;
comment on column t_jtgx.v6 is ‘家庭住址’;
comment on column t_jtgx.v5 is ‘备注’;
–任职经历表加注释
comment on table t_jtgx is ‘任职经历’;
SQLCopy
任职经历表创建语句如下:

create table t_rzjl(
id integer,
customerId int,
zw varchar(100),
gs varchar(100),
beginDate datetime,
endDate datetime,
v1 varchar(100),
v2 varchar(100)
);
–任职经历字段加注释
comment on column t_rzjl.id is ‘主键’;
comment on column t_rzjl.customerId is ‘职工’;
comment on column t_rzjl.zw is ‘职务说明’;
comment on column t_rzjl.gs is ‘公司’;
comment on column t_rzjl.beginDate is ‘开始日期’;
comment on column t_rzjl.endDate is ‘结束日期’;
comment on column t_rzjl.v1 is ‘详细说明’;
comment on column t_rzjl.v2 is ‘总结’;
–任职经历表加注释
comment on table t_rzjl is ‘任职经历’;
SQLCopy
学习经历表创建语句如下:

create table t_xxjl(
id integer,
customerId int,
beginDate datetime,
endDate datetime,
v1 varchar(100),
v2 varchar(100)
);
–学习经历字段加注释
comment on column t_xxjl.id is ‘主键’;
comment on column t_xxjl.customerId is ‘职工’;
comment on column t_xxjl.beginDate is ‘开始日期’;
comment on column t_xxjl.endDate is ‘结束日期’;
comment on column t_xxjl.v1 is ‘详细说明’;
comment on column t_xxjl.v2 is ‘总结’;
–学习经历表加注释
comment on table t_xxjl is ‘学习经历’;
SQLCopy
职称表创建语句如下:

create table t_zc(
id integer,
bmName varchar(100)
);
–职称字段加注释
comment on column t_zc.id is ‘主键’;
comment on column t_zc.bmName is ‘职称’;
–职称表加注释
comment on table t_zc is ‘职称’;
SQLCopy
职务表创建语句如下:

create table t_zw(
id integer,
bmName varchar(100)
);
–职务字段加注释
comment on column t_zw.id is ‘主键’;
comment on column t_zw.bmName is ‘植物’;
–职务表加注释
comment on table t_zw is ‘职务’;
SQLCopy
oracle特有,对应序列如下:

create sequence s_t_bm;
create sequence s_t_customer;
create sequence s_t_jlcf;
create sequence s_t_jtgx;
create sequence s_t_rzjl;
create sequence s_t_xxjl;
create sequence s_t_zc;
create sequence s_t_zw;
SQLCopy
人力资源管理系统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_bm(
id int identity(1,1) primary key not null,–主键
bmName varchar(100)–部门
);
SQLCopy
职工表创建语句如下:

–职工表注释
create table t_customer(
id int identity(1,1) primary key not null,–主键
username varchar(100),–账号
password varchar(100),–密码
customerName varchar(100),–姓名
headPic varchar(100),–头像
phone varchar(100),–电话
age varchar(100),–年龄
sex varchar(100),–性别
gh varchar(100),–工号
bmId int,–部门
zwId int,–职务
zcId int–职称
);
SQLCopy
奖励惩罚表创建语句如下:

–奖励惩罚表注释
create table t_jlcf(
id int identity(1,1) primary key not null,–主键
customerId int,–职工
types varchar(100),–奖励惩罚
title varchar(100),–标题
content varchar(100),–详细说明
pic varchar(100),–图片
fileUrl varchar(100),–附件
showDate datetime,–日期
v5 varchar(100)–备注
);
SQLCopy
任职经历表创建语句如下:

–任职经历表注释
create table t_jtgx(
id int identity(1,1) primary key not null,–主键
customerId int,–职工
v1 varchar(100),–籍贯
v2 varchar(100),–是否已婚
v3 varchar(100),–子女介绍
v4 varchar(100),–父母介绍
v6 varchar(100),–家庭住址
v5 varchar(100)–备注
);
SQLCopy
任职经历表创建语句如下:

–任职经历表注释
create table t_rzjl(
id int identity(1,1) primary key not null,–主键
customerId int,–职工
zw varchar(100),–职务说明
gs varchar(100),–公司
beginDate datetime,–开始日期
endDate datetime,–结束日期
v1 varchar(100),–详细说明
v2 varchar(100)–总结
);
SQLCopy
学习经历表创建语句如下:

–学习经历表注释
create table t_xxjl(
id int identity(1,1) primary key not null,–主键
customerId int,–职工
beginDate datetime,–开始日期
endDate datetime,–结束日期
v1 varchar(100),–详细说明
v2 varchar(100)–总结
);
SQLCopy
职称表创建语句如下:

–职称表注释
create table t_zc(
id int identity(1,1) primary key not null,–主键
bmName varchar(100)–职称
);
SQLCopy
职务表创建语句如下:

–职务表注释
create table t_zw(
id int identity(1,1) primary key not null,–主键
bmName varchar(100)–植物
);
SQLCopy
人力资源管理系统登录后主页
人力资源管理系统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_bm”)
public class Bm {
//主键
@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 bmName;
public String getBmName() {return bmName;}
public void setBmName(String bmName) {this.bmName = bmName;}
}
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_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 customerName;
//头像
private String headPic;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//工号
private String gh;
//部门
private Integer bmId;
//职务
private Integer zwId;
//职称
private Integer zcId;
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 getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
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 String getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
public Integer getBmId() {return bmId;}
public void setBmId(Integer bmId) {this.bmId = bmId;}
public Integer getZwId() {return zwId;}
public void setZwId(Integer zwId) {this.zwId = zwId;}
public Integer getZcId() {return zcId;}
public void setZcId(Integer zcId) {this.zcId = zcId;}
}
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_jlcf”)
public class Jlcf {
//主键
@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 String types;
//标题
private String title;
//详细说明
private String content;
//图片
private String pic;
//附件
private String fileUrl;
//日期
private Date showDate;
//备注
private String v5;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTypes() {return types;}
public void setTypes(String types) {this.types = types;}
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 getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
}
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_jtgx”)
public class Jtgx {
//主键
@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 String v1;
//是否已婚
private String v2;
//子女介绍
private String v3;
//父母介绍
private String v4;
//家庭住址
private String v6;
//备注
private String v5;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
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 getV6() {return v6;}
public void setV6(String v6) {this.v6 = v6;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
}
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_rzjl”)
public class Rzjl {
//主键
@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 String zw;
//公司
private String gs;
//开始日期
private Date beginDate;
//结束日期
private Date endDate;
//详细说明
private String v1;
//总结
private String v2;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getZw() {return zw;}
public void setZw(String zw) {this.zw = zw;}
public String getGs() {return gs;}
public void setGs(String gs) {this.gs = gs;}
public Date getBeginDate() {return beginDate;}
public void setBeginDate(Date beginDate) {this.beginDate = beginDate;}
public Date getEndDate() {return endDate;}
public void setEndDate(Date endDate) {this.endDate = endDate;}
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;}
}
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_xxjl”)
public class Xxjl {
//主键
@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 Date beginDate;
//结束日期
private Date endDate;
//详细说明
private String v1;
//总结
private String v2;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Date getBeginDate() {return beginDate;}
public void setBeginDate(Date beginDate) {this.beginDate = beginDate;}
public Date getEndDate() {return endDate;}
public void setEndDate(Date endDate) {this.endDate = endDate;}
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;}
}
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_zc”)
public class Zc {
//主键
@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 bmName;
public String getBmName() {return bmName;}
public void setBmName(String bmName) {this.bmName = bmName;}
}
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_zw”)
public class Zw {
//主键
@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 bmName;
public String getBmName() {return bmName;}
public void setBmName(String bmName) {this.bmName = bmName;}
}
JavaCopy
人力资源管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:
部门javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//部门
public class Bm extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//部门
private String bmName;
public String getBmName() {return bmName;}
public void setBmName(String bmName) {this.bmName = bmName;}
}
JavaCopy
职工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 customerName;
//头像
private String headPic;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//工号
private String gh;
//部门
private Integer bmId;
//职务
private Integer zwId;
//职称
private Integer zcId;
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 getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
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 String getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
public Integer getBmId() {return bmId;}
public void setBmId(Integer bmId) {this.bmId = bmId;}
public Integer getZwId() {return zwId;}
public void setZwId(Integer zwId) {this.zwId = zwId;}
public Integer getZcId() {return zcId;}
public void setZcId(Integer zcId) {this.zcId = zcId;}
}
JavaCopy
奖励惩罚javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//奖励惩罚
public class Jlcf extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//职工
private Integer customerId;
//奖励惩罚
private String types;
//标题
private String title;
//详细说明
private String content;
//图片
private String pic;
//附件
private String fileUrl;
//日期
private Date showDate;
//备注
private String v5;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTypes() {return types;}
public void setTypes(String types) {this.types = types;}
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 getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
}
JavaCopy
任职经历javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//任职经历
public class Jtgx extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//职工
private Integer customerId;
//籍贯
private String v1;
//是否已婚
private String v2;
//子女介绍
private String v3;
//父母介绍
private String v4;
//家庭住址
private String v6;
//备注
private String v5;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
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 getV6() {return v6;}
public void setV6(String v6) {this.v6 = v6;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
}
JavaCopy
任职经历javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//任职经历
public class Rzjl extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//职工
private Integer customerId;
//职务说明
private String zw;
//公司
private String gs;
//开始日期
private Date beginDate;
//结束日期
private Date endDate;
//详细说明
private String v1;
//总结
private String v2;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getZw() {return zw;}
public void setZw(String zw) {this.zw = zw;}
public String getGs() {return gs;}
public void setGs(String gs) {this.gs = gs;}
public Date getBeginDate() {return beginDate;}
public void setBeginDate(Date beginDate) {this.beginDate = beginDate;}
public Date getEndDate() {return endDate;}
public void setEndDate(Date endDate) {this.endDate = endDate;}
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;}
}
JavaCopy
学习经历javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//学习经历
public class Xxjl extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//职工
private Integer customerId;
//开始日期
private Date beginDate;
//结束日期
private Date endDate;
//详细说明
private String v1;
//总结
private String v2;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Date getBeginDate() {return beginDate;}
public void setBeginDate(Date beginDate) {this.beginDate = beginDate;}
public Date getEndDate() {return endDate;}
public void setEndDate(Date endDate) {this.endDate = endDate;}
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;}
}
JavaCopy
职称javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//职称
public class Zc extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//职称
private String bmName;
public String getBmName() {return bmName;}
public void setBmName(String bmName) {this.bmName = bmName;}
}
JavaCopy
职务javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//职务
public class Zw extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//植物
private String bmName;
public String getBmName() {return bmName;}
public void setBmName(String bmName) {this.bmName = bmName;}
}

发布了140 篇原创文章 · 获赞 23 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/biyesheji_/article/details/104574167