📄 employeedetailinformation.java~1~
字号:
package employeemanagersystem;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2007</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class EmployeeDetailInformation
{
String empId = "";
String depId = "";
String jobId = "";
String name = "";
String degree = "";
int isMarry = 0;
String tel = "";
String address = "";
String birth = "";
String idCard = "";
int contractTime = 0;
String beginTime = "";
String password = "";
public EmployeeDetailInformation()
{
}
public void setEmpId(String empId)
{
this.empId = empId;
}
public void setDepId(String depId)
{
this.depId = depId;
}
public void setJobId(String jobId)
{
this.jobId = jobId;
}
public void setName(String name)
{
this.name = name;
}
public void setDegree(String degree)
{
this.degree = degree;
}
public void setIsMarry(int isMarry)
{
this.isMarry = isMarry;
}
public void setTel(String tel)
{
this.tel=tel;
}
public void setAddress(String address)
{
this.address=address;
}
public void setBirth(String birth)
{
this.birth=birth;
}
public void setIdCard(String idCard)
{
this.idCard=idCard;
}
public void setContractTime(int contractTime)
{
this.contractTime=contractTime;
}
public void setBeginTime(String beginTime)
{
this.beginTime=beginTime;
}
public void setPassword(String password)
{
this.password=password;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -