⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 grouptype.java

📁 采用tapestry的简单OA系统
💻 JAVA
字号:
package com.ejsun.entapps.domain.organization;

import com.ejsun.entapps.domain.Type;

/**
 * @author Labor
 * @since  2004-4-15
 * @version $Revision: 1.1 $
 * 
 **/
public class GroupType extends Type{
	public static final String ORG_COMPANY = "COMPANY";
	public static final String ORG_CENTER = "CENTER";
	public static final String ORG_DIVISION = "DIVISION";
	public static final String ORG_DEPARTMENT = "DEPARTMENT";
	public static final String ORG_SECTION = "SECTION";
	
	public GroupType() {
		
	}
	
	public GroupType(String name, String description) {
		super(name, description);
	}	
}

⌨️ 快捷键说明

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