?? employeetypeinfo.java.svn-base
字號(hào):
package com.nsi.components.employeetype;
import com.nsi.constants.AppConstants;
/**
* @author Chris Ye, created on Sep 30, 2008
*
* EmployeeTypeInfo
*/
public class EmployeeTypeInfo
{
private String empltypeid;
private String empltypedescription;
/**
* constructof of EmployeeTypeInfo
*/
public EmployeeTypeInfo()
{
empltypeid = AppConstants.EMPTY_STRING;
empltypedescription = AppConstants.EMPTY_STRING;
}
public String getEmpltypeid()
{
return empltypeid;
}
public void setEmpltypeid(String empltypeid)
{
this.empltypeid = empltypeid;
}
public String getEmpltypedescription()
{
return empltypedescription;
}
public void setEmpltypedescription(String empltypedescription)
{
this.empltypedescription = empltypedescription;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -