📄 action.java
字号:
/*
* @(#)Action.java Dec 14, 2006
* Copyright 2006 qingdaosoftware, Inc. All rights reserved
*/
package com.qrsx.exam.model;
import java.util.Set;
/**
*
* 功能:The POJO about Action
*
* <p><a href="com.qrsx.exam.model.Action.java"> <i>View Source </i> </a></br>
*
* Company : QingdaoSoftware<br>
* Author : <a href="mailto:wxt1013@163.com">WangXitao</a></p>
* Version : 1.0<br>
* Date : Dec 14, 2006<br>
*
* @hibernate.class table="ACTION"
*
*/
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="com.qrsx.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 + -