?? 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 + -