📄 updaterightformbean.java
字号:
package to.view.FormBean;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
public class UpdateRightFormBean extends ActionForm
{
private int RightID;
private String RightName;
private String RightExplain;
public int getRightID()
{
return RightID;
}
public void setRightID(int RightID)
{
this.RightID = RightID;
}
public String getRightName()
{
return RightName;
}
public void setRightName(String RightName)
{
this.RightName = RightName;
}
public String getRightExplain()
{
return RightExplain;
}
public void setRightExplain(String RightExplain)
{
this.RightExplain = RightExplain;
}
public void reset(ActionMapping mapping, HttpServletRequest request)
{
}
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
{
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -