?? excellent.java
字號:
package com.buat.excellent;
import java.sql.Date;
public class Excellent {
private int employeeId=0;
private int excellentId=0;
private String name=null;
private String gender=null;
private int departmentId=0;
private Date dates=null;
private int countLate=0;
private int countLeave=0;
private int voteId=0;
private int votedId=0;
private int ballot=0;
public int getEmployeeId() {
return employeeId;
}
public void setEmployeeId(int employeeId) {
this.employeeId = employeeId;
}
public int getExcellentId() {
return excellentId;
}
public void setExcellentId(int excellentId) {
this.excellentId = excellentId;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public int getDepartmentId() {
return departmentId;
}
public void setDepartmentId(int departmentId) {
this.departmentId = departmentId;
}
public Date getDates() {
return dates;
}
public void setDates(Date dates) {
this.dates = dates;
}
public int getCountLate() {
return countLate;
}
public void setCountLate(int countLate) {
this.countLate = countLate;
}
public void setName(String name) {
this.name = name;
}
public int getCountLeave() {
return countLeave;
}
public void setCountLeave(int countLeave) {
this.countLeave = countLeave;
}
public int getVoteId() {
return voteId;
}
public void setVoteId(int voteId) {
this.voteId = voteId;
}
public int getVotedId() {
return votedId;
}
public void setVotedId(int votedId) {
this.votedId = votedId;
}
public int getBallot() {
return ballot;
}
public void setBallot(int ballot) {
this.ballot = ballot;
}
public String getName() {
return name;
}
public Excellent() {
super();
// TODO Auto-generated constructor stub
}
public Excellent(int employeeId, String name, Date dates, int countLate,
int countLeave) {
super();
this.employeeId = employeeId;
this.name = name;
this.dates = dates;
this.countLate = countLate;
this.countLeave = countLeave;
}
public Excellent(int employeeId, int excellentId, String name,
int departmentId, Date dates, int voteId, int votedId, int ballot) {
super();
this.employeeId = employeeId;
this.excellentId = excellentId;
this.name = name;
this.departmentId = departmentId;
this.dates = dates;
this.voteId = voteId;
this.votedId = votedId;
this.ballot = ballot;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -