📄 employee.java
字号:
package org.pan.web;
/**员工类
* Description:
* Copyright: Copyright (c) 2008
* Company: 双鱼林电脑工作室出品
* @author: 双鱼林
* @version 1.0
*/
public class employee {
private String employeeId; //职工编号
private String name; //姓名
private String cardNumber; //身份证号
private String nation; //民族
private String sex; //性别
private String birthday; //生日
private String graduateSchool; //毕业学校
private String schoolRecord; //学历
private String department; //部门
private String positionName; //职称
private String telephone; //电话
private String email; //邮件
private String editTime; //编辑时间
private String memo; //备注
public employee() {
employeeId = "";
name = "";
cardNumber = "";
nation = "";
sex = "";
birthday = "";
graduateSchool = "";
schoolRecord = "";
department = "";
positionName = "";
telephone = "";
email = "";
editTime = "";
memo = "";
}
public void setEmployeeId(String newEmployeeId){
this.employeeId = newEmployeeId;
}
public String getEmployeeId(){
return employeeId;
}
public void setName(String newName) {
this.name = newName;
}
public String getName() {
return name;
}
public void setCardNumber(String newCardNumber) {
this.cardNumber = newCardNumber;
}
public String getCardNumber() {
return cardNumber;
}
public void setNation(String newNation) {
this.nation = newNation;
}
public String getNation() {
return nation;
}
public void setSex(String newSex) {
this.sex = newSex;
}
public String getSex() {
return sex;
}
public void setBirthday(String newBirthday) {
this.birthday = newBirthday;
}
public String getBirthday() {
return this.birthday;
}
public void setGraduateSchool(String newGraduateSchool) {
this.graduateSchool = newGraduateSchool;
}
public String getGraduateSchool() {
return this.graduateSchool;
}
public void setSchoolRecord(String newSchoolRecord) {
this.schoolRecord = newSchoolRecord;
}
public String getSchoolRecord() {
return this.schoolRecord;
}
public void setDepartment(String newDepartment) {
this.department = newDepartment;
}
public String getDepartment() {
return department;
}
public void setPositionName(String newPositionName) {
this.positionName = newPositionName;
}
public String getPositionName() {
return positionName;
}
public void setTelephone(String newTelephone) {
this.telephone = newTelephone;
}
public String getTelephone() {
return this.telephone;
}
public void setEmail(String newEmail) {
this.email = newEmail;
}
public String getEmail() {
return this.email;
}
public void setEditTime(String newEditTime) {
this.editTime = newEditTime;
}
public String getEditTime() {
return this.editTime;
}
public void setMemo(String newMemo) {
this.memo = newMemo;
}
public String getMemo() {
return this.memo;
}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -