拓扑软件公司HR管理系统的设计与实现

**拓扑软件公司HR管理系统的设计与实现**
  • 课题来源、研究目的(选题的意义和预期应用价值)

    课题来源:实习

    (一)选题的意义

伴随着个人电脑的普及,数据库技术、客户/服务器技术,特别是Internet技术的发展,使得人力资源管理系统的发生革命性的变化。人力资源管理的本质就是解决人力资源的配置与效率问题,配置与效率又是密切相关的人力资源的两个矛盾的侧面。效率高就可以配置低一些,效率不高就要增加配置,而配置多了又可能出现更低的效率。中国人不相信制度与流程,对别人可以,对自己就会折扣,这是不争的事实,所以还是要借助我们自己的文化特点解决员工内心的障碍与不快,才会有效率的提升,这就是人力资源管理的作用力点。美国学者指出,未来最成功的企业将是学习型组织, 因为未来唯一持久的优势是比你的竞争对手学得更快的能力。只有把企业建成学习型组织, 才能充分体现“以人为本”的管理理念; 提高员工创新能力, 为员工发展自我提供广阔的空间, 实现知识共享, 提高企业的整体人力资源管理水平。

(二)预期应用价值

为满足应用的需求,开发设计与实现一个完整的HR管理系统,可以简化人员管理和绩效的管理,人力资源管理是管理学中的一个崭新和重要的领域,是研究如何对人力资源生产、开发、配置和利用的, 是一个企业为实现企业目标, 提高效率, 运用心理学、社会学、管理学和人类学等相关的科学知识和原理, 对企业中的人力资源进行规划、培训、选拔录用、考核激励的计划、组织、控制和协调的活动过程。现代人力资源管理是以传统劳动人事管理为基础发展起来的, 但二者却有诸多不同。企业拥有三大资源, 即人力资源、物质资源和财力资源。其中, 物质资源和财力资源的利用归根结底是通过与人力资源的结合实 拓扑软件公司HR管理系统的设计与实现登录注册界面

拓扑软件公司HR管理系统的设计与实现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_dept(
	id int primary key auto_increment comment '主键',
	deptName varchar(100) comment '部门'
) comment '部门';

员工表创建语句如下:


create table t_employee(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	employeeName varchar(100) comment '姓名',
	deptId int comment '部门',
	sex varchar(100) comment '性别',
	age varchar(100) comment '年龄',
	phone varchar(100) comment '电话',
	address varchar(100) comment '地址',
	rzsj datetime comment '入职时间',
	rzgw varchar(100) comment '入职岗位'
) comment '员工';

HR表创建语句如下:


create table t_hr(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	hrName varchar(100) comment '姓名',
	sex varchar(100) comment '性别',
	age varchar(100) comment '年龄',
	phone varchar(100) comment '电话',
	address varchar(100) comment '地址'
) comment 'HR';

绩效考核表创建语句如下:


create table t_jxkh(
	id int primary key auto_increment comment '主键',
	employeeId int comment '员工',
	code int comment '得分',
	showDate datetime comment '日期',
	remark varchar(100) comment '备注'
) comment '绩效考核';

考勤表创建语句如下:


create table t_kq(
	id int primary key auto_increment comment '主键',
	employeeId int comment '员工',
	insertDate datetime comment '日期'
) comment '考勤';

薪酬福利表创建语句如下:


create table t_xcfl(
	id int primary key auto_increment comment '主键',
	employeeId int comment '员工',
	xc int comment '薪酬',
	showDate datetime comment '日期',
	remark varchar(100) comment '备注'
) comment '薪酬福利';

应聘表创建语句如下:


create table t_yp(
	id int primary key auto_increment comment '主键',
	hrName varchar(100) comment '姓名',
	sex varchar(100) comment '性别',
	age varchar(100) comment '年龄',
	phone varchar(100) comment '电话',
	address varchar(100) comment '地址',
	ypgw varchar(100) comment '应聘岗位'
) comment '应聘';

招聘表创建语句如下:


create table t_zp(
	id int primary key auto_increment comment '主键',
	title varchar(100) comment '招聘标题',
	pic varchar(100) comment '图片',
	content varchar(100) comment '内容'
) comment '招聘';

拓扑软件公司HR管理系统的设计与实现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_dept(
	id integer,
	deptName varchar(100)
);
--部门字段加注释
comment on column t_dept.id is '主键';
comment on column t_dept.deptName is '部门';
--部门表加注释
comment on table t_dept is '部门';

员工表创建语句如下:


create table t_employee(
	id integer,
	username varchar(100),
	password varchar(100),
	employeeName varchar(100),
	deptId int,
	sex varchar(100),
	age varchar(100),
	phone varchar(100),
	address varchar(100),
	rzsj datetime,
	rzgw varchar(100)
);
--员工字段加注释
comment on column t_employee.id is '主键';
comment on column t_employee.username is '账号';
comment on column t_employee.password is '密码';
comment on column t_employee.employeeName is '姓名';
comment on column t_employee.deptId is '部门';
comment on column t_employee.sex is '性别';
comment on column t_employee.age is '年龄';
comment on column t_employee.phone is '电话';
comment on column t_employee.address is '地址';
comment on column t_employee.rzsj is '入职时间';
comment on column t_employee.rzgw is '入职岗位';
--员工表加注释
comment on table t_employee is '员工';

HR表创建语句如下:


create table t_hr(
	id integer,
	username varchar(100),
	password varchar(100),
	hrName varchar(100),
	sex varchar(100),
	age varchar(100),
	phone varchar(100),
	address varchar(100)
);
--HR字段加注释
comment on column t_hr.id is '主键';
comment on column t_hr.username is '账号';
comment on column t_hr.password is '密码';
comment on column t_hr.hrName is '姓名';
comment on column t_hr.sex is '性别';
comment on column t_hr.age is '年龄';
comment on column t_hr.phone is '电话';
comment on column t_hr.address is '地址';
--HR表加注释
comment on table t_hr is 'HR';

绩效考核表创建语句如下:


create table t_jxkh(
	id integer,
	employeeId int,
	code int,
	showDate datetime,
	remark varchar(100)
);
--绩效考核字段加注释
comment on column t_jxkh.id is '主键';
comment on column t_jxkh.employeeId is '员工';
comment on column t_jxkh.code is '得分';
comment on column t_jxkh.showDate is '日期';
comment on column t_jxkh.remark is '备注';
--绩效考核表加注释
comment on table t_jxkh is '绩效考核';

考勤表创建语句如下:


create table t_kq(
	id integer,
	employeeId int,
	insertDate datetime
);
--考勤字段加注释
comment on column t_kq.id is '主键';
comment on column t_kq.employeeId is '员工';
comment on column t_kq.insertDate is '日期';
--考勤表加注释
comment on table t_kq is '考勤';

薪酬福利表创建语句如下:


create table t_xcfl(
	id integer,
	employeeId int,
	xc int,
	showDate datetime,
	remark varchar(100)
);
--薪酬福利字段加注释
comment on column t_xcfl.id is '主键';
comment on column t_xcfl.employeeId is '员工';
comment on column t_xcfl.xc is '薪酬';
comment on column t_xcfl.showDate is '日期';
comment on column t_xcfl.remark is '备注';
--薪酬福利表加注释
comment on table t_xcfl is '薪酬福利';

应聘表创建语句如下:


create table t_yp(
	id integer,
	hrName varchar(100),
	sex varchar(100),
	age varchar(100),
	phone varchar(100),
	address varchar(100),
	ypgw varchar(100)
);
--应聘字段加注释
comment on column t_yp.id is '主键';
comment on column t_yp.hrName is '姓名';
comment on column t_yp.sex is '性别';
comment on column t_yp.age is '年龄';
comment on column t_yp.phone is '电话';
comment on column t_yp.address is '地址';
comment on column t_yp.ypgw is '应聘岗位';
--应聘表加注释
comment on table t_yp is '应聘';

招聘表创建语句如下:


create table t_zp(
	id integer,
	title varchar(100),
	pic varchar(100),
	content varchar(100)
);
--招聘字段加注释
comment on column t_zp.id is '主键';
comment on column t_zp.title is '招聘标题';
comment on column t_zp.pic is '图片';
comment on column t_zp.content is '内容';
--招聘表加注释
comment on table t_zp is '招聘';

oracle特有,对应序列如下:


create sequence s_t_dept;
create sequence s_t_employee;
create sequence s_t_hr;
create sequence s_t_jxkh;
create sequence s_t_kq;
create sequence s_t_xcfl;
create sequence s_t_yp;
create sequence s_t_zp;

拓扑软件公司HR管理系统的设计与实现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_dept(
	id int identity(1,1) primary key not null,--主键
	deptName varchar(100)--部门
);

员工表创建语句如下:


--员工表注释
create table t_employee(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	employeeName varchar(100),--姓名
	deptId int,--部门
	sex varchar(100),--性别
	age varchar(100),--年龄
	phone varchar(100),--电话
	address varchar(100),--地址
	rzsj datetime,--入职时间
	rzgw varchar(100)--入职岗位
);

HR表创建语句如下:


--HR表注释
create table t_hr(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	hrName varchar(100),--姓名
	sex varchar(100),--性别
	age varchar(100),--年龄
	phone varchar(100),--电话
	address varchar(100)--地址
);

绩效考核表创建语句如下:


--绩效考核表注释
create table t_jxkh(
	id int identity(1,1) primary key not null,--主键
	employeeId int,--员工
	code int,--得分
	showDate datetime,--日期
	remark varchar(100)--备注
);

考勤表创建语句如下:


--考勤表注释
create table t_kq(
	id int identity(1,1) primary key not null,--主键
	employeeId int,--员工
	insertDate datetime--日期
);

薪酬福利表创建语句如下:


--薪酬福利表注释
create table t_xcfl(
	id int identity(1,1) primary key not null,--主键
	employeeId int,--员工
	xc int,--薪酬
	showDate datetime,--日期
	remark varchar(100)--备注
);

应聘表创建语句如下:


--应聘表注释
create table t_yp(
	id int identity(1,1) primary key not null,--主键
	hrName varchar(100),--姓名
	sex varchar(100),--性别
	age varchar(100),--年龄
	phone varchar(100),--电话
	address varchar(100),--地址
	ypgw varchar(100)--应聘岗位
);

招聘表创建语句如下:


--招聘表注释
create table t_zp(
	id int identity(1,1) primary key not null,--主键
	title varchar(100),--招聘标题
	pic varchar(100),--图片
	content varchar(100)--内容
);

拓扑软件公司HR管理系统的设计与实现登录后主页

拓扑软件公司HR管理系统的设计与实现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_dept")
public class Dept {
//主键
@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 deptName;
public String getDeptName() {return deptName;}
public void setDeptName(String deptName) {this.deptName = deptName;}
}

员工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_employee")
public class Employee {
//主键
@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 employeeName;
//部门
private Integer deptId;
//性别
private String sex;
//年龄
private String age;
//电话
private String phone;
//地址
private String address;
//入职时间
private Date rzsj;
//入职岗位
private String rzgw;
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 getEmployeeName() {return employeeName;}
public void setEmployeeName(String employeeName) {this.employeeName = employeeName;}
public Integer getDeptId() {return deptId;}
public void setDeptId(Integer deptId) {this.deptId = deptId;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public Date getRzsj() {return rzsj;}
public void setRzsj(Date rzsj) {this.rzsj = rzsj;}
public String getRzgw() {return rzgw;}
public void setRzgw(String rzgw) {this.rzgw = rzgw;}
}

HRjavaBean创建语句如下:


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
//HR
@Table(name = "t_hr")
public class Hr {
//主键
@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 hrName;
//性别
private String sex;
//年龄
private String age;
//电话
private String phone;
//地址
private String address;
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 getHrName() {return hrName;}
public void setHrName(String hrName) {this.hrName = hrName;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
}

绩效考核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_jxkh")
public class Jxkh {
//主键
@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 employeeId;
//得分
private Integer code;
//日期
private Date showDate;
//备注
private String remark;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getRemark() {return remark;}
public void setRemark(String remark) {this.remark = remark;}
}

考勤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_kq")
public class Kq {
//主键
@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 employeeId;
//日期
private Date insertDate;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
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_xcfl")
public class Xcfl {
//主键
@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 employeeId;
//薪酬
private Integer xc;
//日期
private Date showDate;
//备注
private String remark;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
public Integer getXc() {return xc;}
public void setXc(Integer xc) {this.xc = xc;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getRemark() {return remark;}
public void setRemark(String remark) {this.remark = remark;}
}

应聘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_yp")
public class Yp {
//主键
@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 hrName;
//性别
private String sex;
//年龄
private String age;
//电话
private String phone;
//地址
private String address;
//应聘岗位
private String ypgw;
public String getHrName() {return hrName;}
public void setHrName(String hrName) {this.hrName = hrName;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getYpgw() {return ypgw;}
public void setYpgw(String ypgw) {this.ypgw = ypgw;}
}

招聘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 String title;
//图片
private String pic;
//内容
private String content;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}

拓扑软件公司HR管理系统的设计与实现spring springMVC mybatis框架对象(javaBean,pojo)设计:

部门javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//部门
public class Dept  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//部门
private String deptName;
public String getDeptName() {return deptName;}
public void setDeptName(String deptName) {this.deptName = deptName;}
}

员工javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//员工
public class Employee  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 employeeName;
//部门
private Integer deptId;
//性别
private String sex;
//年龄
private String age;
//电话
private String phone;
//地址
private String address;
//入职时间
private Date rzsj;
//入职岗位
private String rzgw;
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 getEmployeeName() {return employeeName;}
public void setEmployeeName(String employeeName) {this.employeeName = employeeName;}
public Integer getDeptId() {return deptId;}
public void setDeptId(Integer deptId) {this.deptId = deptId;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public Date getRzsj() {return rzsj;}
public void setRzsj(Date rzsj) {this.rzsj = rzsj;}
public String getRzgw() {return rzgw;}
public void setRzgw(String rzgw) {this.rzgw = rzgw;}
}

HRjavaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//HR
public class Hr  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 hrName;
//性别
private String sex;
//年龄
private String age;
//电话
private String phone;
//地址
private String address;
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 getHrName() {return hrName;}
public void setHrName(String hrName) {this.hrName = hrName;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
}

绩效考核javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//绩效考核
public class Jxkh  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer employeeId;
//得分
private Integer code;
//日期
private Date showDate;
//备注
private String remark;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getRemark() {return remark;}
public void setRemark(String remark) {this.remark = remark;}
}

考勤javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//考勤
public class Kq  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer employeeId;
//日期
private Date insertDate;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
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 Xcfl  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer employeeId;
//薪酬
private Integer xc;
//日期
private Date showDate;
//备注
private String remark;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
public Integer getXc() {return xc;}
public void setXc(Integer xc) {this.xc = xc;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getRemark() {return remark;}
public void setRemark(String remark) {this.remark = remark;}
}

应聘javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//应聘
public class Yp  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//姓名
private String hrName;
//性别
private String sex;
//年龄
private String age;
//电话
private String phone;
//地址
private String address;
//应聘岗位
private String ypgw;
public String getHrName() {return hrName;}
public void setHrName(String hrName) {this.hrName = hrName;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getYpgw() {return ypgw;}
public void setYpgw(String ypgw) {this.ypgw = ypgw;}
}

招聘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 String title;
//图片
private String pic;
//内容
private String content;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}

没有更多推荐了,返回首页

私密
私密原因:
请选择设置私密原因
  • 广告
  • 抄袭
  • 版权
  • 政治
  • 色情
  • 无意义
  • 其他
其他原因:
120
出错啦
系统繁忙,请稍后再试

猜你喜欢

转载自blog.csdn.net/weixin_44062395/article/details/86302037