📄 adminugsetform.java
字号:
package com.laoer.bbscs.web.form;
import javax.servlet.http.*;
import org.apache.struts.action.*;
public class AdminUgSetForm
extends ActionForm {
private String action;
private String ajax;
private String groupDesc;
private String groupName;
private int id;
private int[] roleIDs;
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public void setId(int id) {
this.id = id;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public void setGroupDesc(String groupDesc) {
this.groupDesc = groupDesc;
}
public void setAjax(String ajax) {
this.ajax = ajax;
}
public void setRoleIDs(int[] roleIDs) {
this.roleIDs = roleIDs;
}
public String getAjax() {
return ajax;
}
public String getGroupDesc() {
return groupDesc;
}
public String getGroupName() {
return groupName;
}
public int getId() {
return id;
}
public int[] getRoleIDs() {
return roleIDs;
}
public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
/** @todo: finish this method, this is just the skeleton.*/
return null;
}
public void reset(ActionMapping actionMapping, HttpServletRequest servletRequest) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -