Package org.beangle.ems.dictionary.model
Class CodeMeta
- java.lang.Object
-
- org.beangle.commons.entity.pojo.NumberIdObject<Integer>
-
- org.beangle.commons.entity.pojo.IntegerIdObject
-
- org.beangle.ems.dictionary.model.CodeMeta
-
- All Implemented Interfaces:
Serializable,org.beangle.commons.entity.Entity<Integer>
@Entity(name="org.beangle.ems.dictionary.model.CodeMeta") public class CodeMeta extends org.beangle.commons.entity.pojo.IntegerIdObject登记系统使用的基础代码 这些代码的名称、英文名称和全称类名- Version:
- $Id: Dictionary.java May 4, 2011 7:29:38 PM chaostone $
- Author:
- chaostone
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CodeMeta()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CodeCategorygetCategory()StringgetClassName()查询代码的类名StringgetName()代码名称StringgetTitle()voidsetCategory(CodeCategory category)voidsetClassName(String className)设置新的类名voidsetName(String name)设置代码名称voidsetTitle(String title)
-
-
-
Method Detail
-
getName
public String getName()
代码名称- Returns:
- 名称
-
setName
public void setName(String name)
设置代码名称- Parameters:
name- 新的代码名称
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
getClassName
public String getClassName()
查询代码的类名- Returns:
- 代码的类路径全名
-
setClassName
public void setClassName(String className)
设置新的类名- Parameters:
className- 类路径全称
-
getCategory
public CodeCategory getCategory()
-
setCategory
public void setCategory(CodeCategory category)
-
-