高校人员绩效考核管理系统教师绩效考核

**高校人员绩效考核管理系统教师绩效考核**

基本信息管理。基本信息管理功能模块的设计,目的是完成绩效考核基础数据的设置及管理,它是系统运行的基础。基本信息管理模块管理内容主要包括教职工管理、部门管理、教研室管理以及评分角色管理等对象。
部门管理完成部门信息的查询、添加、编辑及删除等操作。
部门查询:根据部门名称、部门编号等条件完成部门信息的快速检索。
部门添加:根据需求添加新的部门信息。
部门编辑:根据部门标识,实现指定部门信息的动态编辑。
部门删除:根据部门标识删除指定部门信息。
教职工管理:完成信息学院所有教职工基本信息的动态管理,包括查询、新增、编辑以及删除。
教职工查询:根据教职工姓名、教职工工号等条件完成教职工信息的快速检索。包括工号、姓名、性别、证件。
教职工添加:根据需求添加新的教职工信息,号码等。
教职工编辑:根据教职工标识,实现指定教职工信息的动态编辑,包括工号、姓名、性别、证件号码等。
教职工删除:根据教职工标识删除指定教职工信息。
⑵考评设置。绩效考核在实施时,其考核并不是杂乱无序的,而是要符合一定的考核标准,而这个考评标准需要进行事先设置,也只有设置好这些考评参数,才能够实施对教职工的绩效考核。考评设置模块在设计时,提供了考评期限设置、考评管理设置、考评角色分配、指标的归纳分类。
考评期限设置:设定考评的周期,包括学期或学年两个不同类别,由于考核通常针对单个学期进行,所以考评期限默认为学期。在对考评期限设置管理时,可以实现考评期限的查询、新增、编辑及删除等操作。
考评期限查询:根据年度、学期为检索条件,实现特定考评周期信息的快速筛选;
考评期限新增:根据绩效考核需要,增加新的考评期限信息;
考评期限编辑:根据考评期限标识,修改历史考评期限信息;
考评期限删除:根据考评期限标识,删除存在的考评期限信息。
考评管理:考评管理即是绩效考核的实施,它也是绩效考核系统的核心,包括启动绩效考核、绩效考核实施以及终止考核等步骤,具体分析如下:
考评查询:考评查询功能提供了历史考评数据信息的快速检索,检索条件包括年度/学期、教师工号以及姓名等,其也 高校人员绩效考核管理系统教师绩效考核登录注册界面

高校人员绩效考核管理系统教师绩效考核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 '部门',
	bmbh varchar(100) comment '部门编号'
) comment '部门';

教职工表创建语句如下:


create table t_employee(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	gh varchar(100) comment '工号',
	deptId int comment '部门',
	employeeName varchar(100) comment '姓名',
	age varchar(100) comment '年龄',
	sex varchar(100) comment '性别',
	phone varchar(100) comment '电话',
	idcard varchar(100) comment '证件号',
	pic varchar(100) comment '头像',
	status varchar(100) comment '状态',
	js varchar(100) comment '角色'
) comment '教职工';

考勤通报表创建语句如下:


create table t_gg(
	id int primary key auto_increment comment '主键',
	title varchar(100) comment '标题',
	content varchar(100) comment '说明',
	xm varchar(100) comment '姓名',
	showDate datetime comment '日期'
) comment '考勤通报';

考评期限表创建语句如下:


create table t_kpqx(
	id int primary key auto_increment comment '主键',
	title varchar(100) comment '考评期限',
	beginDate datetime comment '开始日期',
	endDate datetime comment '结束日期'
) comment '考评期限';

考评指标表创建语句如下:


create table t_kpzb(
	id int primary key auto_increment comment '主键',
	kpqxId int comment '考评期限',
	title varchar(100) comment '考评名称',
	code int comment '总分'
) comment '考评指标';

考评指标详细表创建语句如下:


create table t_kpzblist(
	id int primary key auto_increment comment '主键',
	kpzbId int comment '考评指标',
	title varchar(100) comment '指标名称',
	code int comment '最高分数'
) comment '考评指标详细';

职工考核表创建语句如下:


create table t_zgkh(
	id int primary key auto_increment comment '主键',
	employeeId int comment '员工',
	title varchar(100) comment '考核名称',
	code int comment '总分',
	qxxx varchar(100) comment '期限信息',
	zdf int comment '总得分'
) comment '职工考核';

职工考核详细表创建语句如下:


create table t_zgkhlist(
	id int primary key auto_increment comment '主键',
	employeeId int comment '员工',
	zgkhId int comment '职工考核',
	title varchar(100) comment '指标名称',
	code int comment '最高分数',
	df int comment '得分'
) comment '职工考核详细';

高校人员绩效考核管理系统教师绩效考核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),
	bmbh varchar(100)
);
--部门字段加注释
comment on column t_dept.id is '主键';
comment on column t_dept.deptName is '部门';
comment on column t_dept.bmbh is '部门编号';
--部门表加注释
comment on table t_dept is '部门';

教职工表创建语句如下:


create table t_employee(
	id integer,
	username varchar(100),
	password varchar(100),
	gh varchar(100),
	deptId int,
	employeeName varchar(100),
	age varchar(100),
	sex varchar(100),
	phone varchar(100),
	idcard varchar(100),
	pic varchar(100),
	status varchar(100),
	js 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.gh is '工号';
comment on column t_employee.deptId is '部门';
comment on column t_employee.employeeName is '姓名';
comment on column t_employee.age is '年龄';
comment on column t_employee.sex is '性别';
comment on column t_employee.phone is '电话';
comment on column t_employee.idcard is '证件号';
comment on column t_employee.pic is '头像';
comment on column t_employee.status is '状态';
comment on column t_employee.js is '角色';
--教职工表加注释
comment on table t_employee is '教职工';

考勤通报表创建语句如下:


create table t_gg(
	id integer,
	title varchar(100),
	content varchar(100),
	xm varchar(100),
	showDate datetime
);
--考勤通报字段加注释
comment on column t_gg.id is '主键';
comment on column t_gg.title is '标题';
comment on column t_gg.content is '说明';
comment on column t_gg.xm is '姓名';
comment on column t_gg.showDate is '日期';
--考勤通报表加注释
comment on table t_gg is '考勤通报';

考评期限表创建语句如下:


create table t_kpqx(
	id integer,
	title varchar(100),
	beginDate datetime,
	endDate datetime
);
--考评期限字段加注释
comment on column t_kpqx.id is '主键';
comment on column t_kpqx.title is '考评期限';
comment on column t_kpqx.beginDate is '开始日期';
comment on column t_kpqx.endDate is '结束日期';
--考评期限表加注释
comment on table t_kpqx is '考评期限';

考评指标表创建语句如下:


create table t_kpzb(
	id integer,
	kpqxId int,
	title varchar(100),
	code int
);
--考评指标字段加注释
comment on column t_kpzb.id is '主键';
comment on column t_kpzb.kpqxId is '考评期限';
comment on column t_kpzb.title is '考评名称';
comment on column t_kpzb.code is '总分';
--考评指标表加注释
comment on table t_kpzb is '考评指标';

考评指标详细表创建语句如下:


create table t_kpzblist(
	id integer,
	kpzbId int,
	title varchar(100),
	code int
);
--考评指标详细字段加注释
comment on column t_kpzblist.id is '主键';
comment on column t_kpzblist.kpzbId is '考评指标';
comment on column t_kpzblist.title is '指标名称';
comment on column t_kpzblist.code is '最高分数';
--考评指标详细表加注释
comment on table t_kpzblist is '考评指标详细';

职工考核表创建语句如下:


create table t_zgkh(
	id integer,
	employeeId int,
	title varchar(100),
	code int,
	qxxx varchar(100),
	zdf int
);
--职工考核字段加注释
comment on column t_zgkh.id is '主键';
comment on column t_zgkh.employeeId is '员工';
comment on column t_zgkh.title is '考核名称';
comment on column t_zgkh.code is '总分';
comment on column t_zgkh.qxxx is '期限信息';
comment on column t_zgkh.zdf is '总得分';
--职工考核表加注释
comment on table t_zgkh is '职工考核';

职工考核详细表创建语句如下:


create table t_zgkhlist(
	id integer,
	employeeId int,
	zgkhId int,
	title varchar(100),
	code int,
	df int
);
--职工考核详细字段加注释
comment on column t_zgkhlist.id is '主键';
comment on column t_zgkhlist.employeeId is '员工';
comment on column t_zgkhlist.zgkhId is '职工考核';
comment on column t_zgkhlist.title is '指标名称';
comment on column t_zgkhlist.code is '最高分数';
comment on column t_zgkhlist.df is '得分';
--职工考核详细表加注释
comment on table t_zgkhlist is '职工考核详细';

oracle特有,对应序列如下:


create sequence s_t_dept;
create sequence s_t_employee;
create sequence s_t_gg;
create sequence s_t_kpqx;
create sequence s_t_kpzb;
create sequence s_t_kpzblist;
create sequence s_t_zgkh;
create sequence s_t_zgkhlist;

高校人员绩效考核管理系统教师绩效考核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),--部门
	bmbh varchar(100)--部门编号
);

教职工表创建语句如下:


--教职工表注释
create table t_employee(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	gh varchar(100),--工号
	deptId int,--部门
	employeeName varchar(100),--姓名
	age varchar(100),--年龄
	sex varchar(100),--性别
	phone varchar(100),--电话
	idcard varchar(100),--证件号
	pic varchar(100),--头像
	status varchar(100),--状态
	js varchar(100)--角色
);

考勤通报表创建语句如下:


--考勤通报表注释
create table t_gg(
	id int identity(1,1) primary key not null,--主键
	title varchar(100),--标题
	content varchar(100),--说明
	xm varchar(100),--姓名
	showDate datetime--日期
);

考评期限表创建语句如下:


--考评期限表注释
create table t_kpqx(
	id int identity(1,1) primary key not null,--主键
	title varchar(100),--考评期限
	beginDate datetime,--开始日期
	endDate datetime--结束日期
);

考评指标表创建语句如下:


--考评指标表注释
create table t_kpzb(
	id int identity(1,1) primary key not null,--主键
	kpqxId int,--考评期限
	title varchar(100),--考评名称
	code int--总分
);

考评指标详细表创建语句如下:


--考评指标详细表注释
create table t_kpzblist(
	id int identity(1,1) primary key not null,--主键
	kpzbId int,--考评指标
	title varchar(100),--指标名称
	code int--最高分数
);

职工考核表创建语句如下:


--职工考核表注释
create table t_zgkh(
	id int identity(1,1) primary key not null,--主键
	employeeId int,--员工
	title varchar(100),--考核名称
	code int,--总分
	qxxx varchar(100),--期限信息
	zdf int--总得分
);

职工考核详细表创建语句如下:


--职工考核详细表注释
create table t_zgkhlist(
	id int identity(1,1) primary key not null,--主键
	employeeId int,--员工
	zgkhId int,--职工考核
	title varchar(100),--指标名称
	code int,--最高分数
	df int--得分
);

高校人员绩效考核管理系统教师绩效考核登录后主页

高校人员绩效考核管理系统教师绩效考核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;
//部门编号
private String bmbh;
public String getDeptName() {return deptName;}
public void setDeptName(String deptName) {this.deptName = deptName;}
public String getBmbh() {return bmbh;}
public void setBmbh(String bmbh) {this.bmbh = bmbh;}
}

教职工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 gh;
//部门
private Integer deptId;
//姓名
private String employeeName;
//年龄
private String age;
//性别
private String sex;
//电话
private String phone;
//证件号
private String idcard;
//头像
private String pic;
//状态
private String status;
//角色
private String js;
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 getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
public Integer getDeptId() {return deptId;}
public void setDeptId(Integer deptId) {this.deptId = deptId;}
public String getEmployeeName() {return employeeName;}
public void setEmployeeName(String employeeName) {this.employeeName = employeeName;}
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 getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getIdcard() {return idcard;}
public void setIdcard(String idcard) {this.idcard = idcard;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getJs() {return js;}
public void setJs(String js) {this.js = js;}
}

考勤通报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_gg")
public class Gg {
//主键
@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 content;
//姓名
private String xm;
//日期
private Date showDate;
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 getXm() {return xm;}
public void setXm(String xm) {this.xm = xm;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}

考评期限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_kpqx")
public class Kpqx {
//主键
@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 Date beginDate;
//结束日期
private Date endDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
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;}
}

考评指标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_kpzb")
public class Kpzb {
//主键
@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 kpqxId;
//考评名称
private String title;
//总分
private Integer code;
public Integer getKpqxId() {return kpqxId;}
public void setKpqxId(Integer kpqxId) {this.kpqxId = kpqxId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
}

考评指标详细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_kpzblist")
public class Kpzblist {
//主键
@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 kpzbId;
//指标名称
private String title;
//最高分数
private Integer code;
public Integer getKpzbId() {return kpzbId;}
public void setKpzbId(Integer kpzbId) {this.kpzbId = kpzbId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
}

职工考核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_zgkh")
public class Zgkh {
//主键
@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 String title;
//总分
private Integer code;
//期限信息
private String qxxx;
//总得分
private Integer zdf;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
public String getQxxx() {return qxxx;}
public void setQxxx(String qxxx) {this.qxxx = qxxx;}
public Integer getZdf() {return zdf;}
public void setZdf(Integer zdf) {this.zdf = zdf;}
}

职工考核详细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_zgkhlist")
public class Zgkhlist {
//主键
@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 zgkhId;
//指标名称
private String title;
//最高分数
private Integer code;
//得分
private Integer df;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
public Integer getZgkhId() {return zgkhId;}
public void setZgkhId(Integer zgkhId) {this.zgkhId = zgkhId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
public Integer getDf() {return df;}
public void setDf(Integer df) {this.df = df;}
}

高校人员绩效考核管理系统教师绩效考核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;
//部门编号
private String bmbh;
public String getDeptName() {return deptName;}
public void setDeptName(String deptName) {this.deptName = deptName;}
public String getBmbh() {return bmbh;}
public void setBmbh(String bmbh) {this.bmbh = bmbh;}
}

教职工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 gh;
//部门
private Integer deptId;
//姓名
private String employeeName;
//年龄
private String age;
//性别
private String sex;
//电话
private String phone;
//证件号
private String idcard;
//头像
private String pic;
//状态
private String status;
//角色
private String js;
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 getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
public Integer getDeptId() {return deptId;}
public void setDeptId(Integer deptId) {this.deptId = deptId;}
public String getEmployeeName() {return employeeName;}
public void setEmployeeName(String employeeName) {this.employeeName = employeeName;}
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 getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getIdcard() {return idcard;}
public void setIdcard(String idcard) {this.idcard = idcard;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getJs() {return js;}
public void setJs(String js) {this.js = js;}
}

考勤通报javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//考勤通报
public class Gg  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标题
private String title;
//说明
private String content;
//姓名
private String xm;
//日期
private Date showDate;
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 getXm() {return xm;}
public void setXm(String xm) {this.xm = xm;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}

考评期限javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//考评期限
public class Kpqx  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//考评期限
private String title;
//开始日期
private Date beginDate;
//结束日期
private Date endDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
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;}
}

考评指标javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//考评指标
public class Kpzb  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//考评期限
private Integer kpqxId;
//考评名称
private String title;
//总分
private Integer code;
public Integer getKpqxId() {return kpqxId;}
public void setKpqxId(Integer kpqxId) {this.kpqxId = kpqxId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
}

考评指标详细javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//考评指标详细
public class Kpzblist  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//考评指标
private Integer kpzbId;
//指标名称
private String title;
//最高分数
private Integer code;
public Integer getKpzbId() {return kpzbId;}
public void setKpzbId(Integer kpzbId) {this.kpzbId = kpzbId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
}

职工考核javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//职工考核
public class Zgkh  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer employeeId;
//考核名称
private String title;
//总分
private Integer code;
//期限信息
private String qxxx;
//总得分
private Integer zdf;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
public String getQxxx() {return qxxx;}
public void setQxxx(String qxxx) {this.qxxx = qxxx;}
public Integer getZdf() {return zdf;}
public void setZdf(Integer zdf) {this.zdf = zdf;}
}

职工考核详细javaBean创建语句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//职工考核详细
public class Zgkhlist  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer employeeId;
//职工考核
private Integer zgkhId;
//指标名称
private String title;
//最高分数
private Integer code;
//得分
private Integer df;
public Integer getEmployeeId() {return employeeId;}
public void setEmployeeId(Integer employeeId) {this.employeeId = employeeId;}
public Integer getZgkhId() {return zgkhId;}
public void setZgkhId(Integer zgkhId) {this.zgkhId = zgkhId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
public Integer getDf() {return df;}
public void setDf(Integer df) {this.df = df;}
}

猜你喜欢

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