role.java
来自「网上考试系统」· Java 代码 · 共 89 行
JAVA
89 行
package cn.hxex.exam.model;
import java.util.Set;
/**
* The POJO about role
*
* @hibernate.class table="ROLES"
*
* @author galaxy
*
*/
public class Role extends Base
{
/**
* Generated serialVersionUID
*/
private static final long serialVersionUID = -9029926683362698688L;
/**
* @hibernate.property column="NAME"
*/
private String name;
/**
* @hibernate.property column="TITLE"
*/
private String title;
/**
* @return Returns the name.
*/
public String getName()
{
return name;
}
/**
* @param name
* The name to set.
*/
public void setName(String name)
{
this.name = name;
}
/**
* @return Returns the title.
*/
public String getTitle()
{
return title;
}
/**
* @param title
* The title to set.
*/
public void setTitle(String title)
{
this.title = title;
}
/**
* @hibernate.set table="ROLE_FUNCTION" inverse="true" lazy="false"
* @hibernate.key column="ROLE_ID"
* @hibernate.many-to-many column="FUNCTION_ID"
* class="cn.hxex.exam.model.Function"
*/
private Set<Function> functions;
/**
* @return Returns the functions.
*/
public Set<Function> getFunctions()
{
return functions;
}
/**
* @param functions
* The functions to set.
*/
public void setFunctions(Set<Function> functions)
{
this.functions = functions;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?