📄 rightsactionform.java
字号:
package com.ntsky.bbs.form;
import org.apache.struts.action.*;
import javax.servlet.http.*;
/**
* <p>Title: Ntsky OpenSource BBS</p>
* <p>Description: 帖子主题</p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: WWW.FM880.COM</p>
* @author 姚君林
* @version 1.0
*/
public class RightsActionForm extends ActionForm {
private int rgtId;
private String action;
private String rgtName;
private String rgtSort;
public ActionErrors validate(ActionMapping actionMapping,
HttpServletRequest httpServletRequest) {
/**@todo: finish this method, this is just the skeleton.*/
return null;
}
public void reset(ActionMapping actionMapping,
HttpServletRequest httpServletRequest) {
}
/**
* 权限ID
* @return int
*/
public int getRgtId() {
return rgtId;
}
public void setRgtId(int rgtId) {
this.rgtId = rgtId;
}
/**
* 用户动作
* @return String
*/
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
/**
* 权限点
* @return String
*/
public String getRgtName() {
return rgtName;
}
public void setRgtName(String rgtName) {
this.rgtName = rgtName;
}
public String getRgtSort() {
return rgtSort;
}
public void setRgtSort(String rgtSort) {
this.rgtSort = rgtSort;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -