Package org.beangle.ems.meta.model
Class EntityMetaBean
- java.lang.Object
-
- org.beangle.commons.entity.pojo.NumberIdObject<Integer>
-
- org.beangle.commons.entity.pojo.IntegerIdObject
-
- org.beangle.ems.meta.model.EntityMetaBean
-
- All Implemented Interfaces:
Serializable,Entity<Integer>,EntityMeta
@Entity(name="org.beangle.ems.meta.EntityMeta") public class EntityMetaBean extends IntegerIdObject implements EntityMeta
实体元信息- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.beangle.commons.entity.pojo.NumberIdObject
id
-
-
Constructor Summary
Constructors Constructor Description EntityMetaBean()EntityMetaBean(Integer id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetComments()获得实体说明StringgetName()获得实体名称StringgetRemark()获得实体备注voidsetComments(String comments)设置实体说明voidsetName(String name)设置实体名称voidsetRemark(String remark)设置实体备注-
Methods inherited from class org.beangle.commons.entity.pojo.NumberIdObject
equals, getId, hashCode, isPersisted, isTransient, setId
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.beangle.commons.entity.Entity
getId, isPersisted, isTransient, setId
-
-
-
-
Constructor Detail
-
EntityMetaBean
public EntityMetaBean()
-
EntityMetaBean
public EntityMetaBean(Integer id)
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:EntityMeta获得实体名称- Specified by:
getNamein interfaceEntityMeta- Returns:
- 实体名称
-
setName
public void setName(String name)
Description copied from interface:EntityMeta设置实体名称- Specified by:
setNamein interfaceEntityMeta- Parameters:
name- 实体名称
-
getComments
public String getComments()
Description copied from interface:EntityMeta获得实体说明- Specified by:
getCommentsin interfaceEntityMeta- Returns:
- 实体说明
-
setComments
public void setComments(String comments)
Description copied from interface:EntityMeta设置实体说明- Specified by:
setCommentsin interfaceEntityMeta- Parameters:
comments- 实体说明
-
getRemark
public String getRemark()
Description copied from interface:EntityMeta获得实体备注- Specified by:
getRemarkin interfaceEntityMeta- Returns:
- 实体备注
-
setRemark
public void setRemark(String remark)
Description copied from interface:EntityMeta设置实体备注- Specified by:
setRemarkin interfaceEntityMeta- Parameters:
remark- 实体备注
-
-