1. 程式人生 > >高校人員績效考核管理系統教師績效考核

高校人員績效考核管理系統教師績效考核

**高校人員績效考核管理系統教師績效考核**

基本資訊管理。基本資訊管理功能模組的設計,目的是完成績效考核基礎資料的設定及管理,它是系統執行的基礎。基本資訊管理模組管理內容主要包括教職工管理、部門管理、教研室管理以及評分角色管理等物件。
部門管理完成部門資訊的查詢、新增、編輯及刪除等操作。
部門查詢:根據部門名稱、部門編號等條件完成部門資訊的快速檢索。
部門新增:根據需求新增新的部門資訊。
部門編輯:根據部門標識,實現指定部門資訊的動態編輯。
部門刪除:根據部門標識刪除指定部門資訊。
教職工管理:完成資訊學院所有教職工基本資訊的動態管理,包括查詢、新增、編輯以及刪除。
教職工查詢:根據教職工姓名、教職工工號等條件完成教職工資訊的快速檢索。包括工號、姓名、性別、證件。
教職工新增:根據需求新增新的教職工資訊,號碼等。
教職工編輯:根據教職工標識,實現指定教職工資訊的動態編輯,包括工號、姓名、性別、證件號碼等。
教職工刪除:根據教職工標識刪除指定教職工資訊。
⑵考評設定。績效考核在實施時,其考核並不是雜亂無序的,而是要符合一定的考核標準,而這個考評標準需要進行事先設定,也只有設定好這些考評引數,才能夠實施對教職工的績效考核。考評設定模組在設計時,提供了考評期限設定、考評管理設定、考評角色分配、指標的歸納分類。
考評期限設定:設定考評的週期,包括學期或學年兩個不同類別,由於考核通常針對單個學期進行,所以考評期限預設為學期。在對考評期限設定管理時,可以實現考評期限的查詢、新增、編輯及刪除等操作。
考評期限查詢:根據年度、學期為檢索條件,實現特定考評週期資訊的快速篩選;
考評期限新增:根據績效考核需要,增加新的考評期限資訊;
考評期限編輯:根據考評期限標識,修改歷史考評期限資訊;
考評期限刪除:根據考評期限標識,刪除存在的考評期限資訊。
考評管理:考評管理即是績效考核的實施,它也是績效考核系統的核心,包括啟動績效考核、績效考核實施以及終止考核等步驟,具體分析如下:
考評查詢:考評查詢功能提供了歷史考評資料資訊的快速檢索,檢索條件包括年度/學期、教師工號以及姓名等,其也 高校人員績效考核管理系統教師績效考核登入註冊介面

高校人員績效考核管理系統教師績效考核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;}
}