employeetypeinfo.java.svn-base

来自「一个timesheet程序,用来统计开发人员的度量衡web在线程序.用于软件行业」· SVN-BASE 代码 · 共 39 行

SVN-BASE
39
字号
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;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?