📄 action.java
字号:
package cn.hxex.exam.model;
import java.util.Set;
/**
* The POJO about Action
*
* @hibernate.class table="ACTION"
*
* @author home
*
*/
public class Action extends Base
{
/**
* Generated serial Version UID
*/
private static final long serialVersionUID = 8133918555191499757L;
/**
* @hibernate.property column="TITLE"
*/
private String title;
/**
* @hibernate.property column="PATH"
*/
private String path;
/**
* @hibernate.property column="PARAMETER"
*/
private String parameter;
/**
* @hibernate.set table="FUNCTION_ACTION" inverse="true" lazy="false"
* @hibernate.key column="ACTION_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;
}
/**
* @return Returns the parameter.
*/
public String getParameter()
{
return parameter;
}
/**
* @param parameter
* The parameter to set.
*/
public void setParameter(String parameter)
{
this.parameter = parameter;
}
/**
* @return Returns the path.
*/
public String getPath()
{
return path;
}
/**
* @param path
* The path to set.
*/
public void setPath(String path)
{
this.path = path;
}
/**
* @return Returns the title.
*/
public String getTitle()
{
return title;
}
/**
* @param title
* The title to set.
*/
public void setTitle(String title)
{
this.title = title;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -