📄 employeedetailinformation.java
字号:
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 depName="";
String jobId = "";
String jobName="";
String name = "";
String degree = "";
int isMarry = 0;
String marryStr="";
String tel = "";
String address = "";
String birth = "";
String idCard = "";
int contractTime = 0;
String beginTime = "";
String password = "";
int exhibition=0;
String exhibitionStr="";
public EmployeeDetailInformation()
{
}
public void setEmpId(String empId)
{
this.empId=empId;
}
public String getEmpId()
{
return this.empId;
}
public void setDepId(String depId)
{
this.depId=depId;
}
public String getDepId()
{
return this.depId;
}
public void setDepName(String depName)
{
this.depName=depName;
}
public String getDepNamed()
{
return this.depName;
}
public void setJobId(String jobId)
{
this.jobId=jobId;
}
public String getJobId()
{
return this.jobId;
}
public void setJobName(String jobName)
{
this.jobName=jobName;
}
public String getJobName()
{
return this.jobName;
}
public void setName(String name)
{
this.name=name;
}
public String getName()
{
return this.name;
}
public void setDegree(String degree)
{
this.degree=degree;
}
public String getDegree()
{
return this.degree;
}
public void setIsMarry(int isMarry)
{
this.isMarry=isMarry;
}
public int getIsMarry()
{
return this.isMarry;
}
public void setMarryString(String marryStr)
{
this.marryStr=marryStr;
}
public String getMarryStr()
{
return this.marryStr;
}
public void setTel(String tel)
{
this.tel=tel;
}
public String getTel()
{
return this.tel;
}
public void setAddress(String address)
{
this.address=address;
}
public String getAddress()
{
return this.address;
}
public void setBirth(String birth)
{
this.birth=birth;
}
public String getBirth()
{
return this.birth;
}
public void setIdCard(String idCard)
{
this.idCard=idCard;
}
public String getIdCard()
{
return this.idCard;
}
public void setContractTime(int contractTime)
{
this.contractTime=contractTime;
}
public int getContractTime()
{
return this.contractTime;
}
public void setBeginTime(String beginTime)
{
this.beginTime=beginTime;
}
public String getBeginTime()
{
return this.beginTime;
}
public void setPassword(String password)
{
this.password=password;
}
public String getPassword()
{
return this.password;
}
public void setExhibitionStr(String exhibitionStr)
{
this.exhibitionStr=exhibitionStr;
}
public String getExhibitionStr()
{
return this.exhibitionStr;
}
public void setExhibition(int exhibition)
{
this.exhibition=exhibition;
}
public int getExhibition()
{
return this.exhibition;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -