📄 pageform.java
字号:
package com.example.businessmodel;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
public class PageForm extends ActionForm {
private int start = 1;
private String where = "";
public PageForm(){
}
public PageForm(int start,String where){
this.start=start;
this.where=where;
}
public ActionErrors validate(
ActionMapping mapping,
HttpServletRequest request) {
return null;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
}
public int getStart() {
return start;
}
public void setStart(int val) {
this.start = val;
}
public String getWhere() {
return where;
}
public void setWhere(String val) {
this.where = val;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -