📄 readform.java
字号:
package com.laoer.bbscs.web.form;
import org.apache.struts.action.*;
import javax.servlet.http.*;
/**
* <p>Title: TianYi BBS</p>
* <p>Description: TianYi BBS System</p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: LAOER.COM/TIANYISOFT.NET</p>
* @author laoer
* @version 6.0
*/
public class ReadForm
extends ActionForm {
private String action;
private long bid;
private long id;
private int inpages;
private long mainid;
private int page;
private long userID;
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public long getBid() {
return bid;
}
public void setBid(long bid) {
this.bid = bid;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public int getInpages() {
return inpages;
}
public void setInpages(int inpages) {
this.inpages = inpages;
}
public long getMainid() {
return mainid;
}
public void setMainid(long mainid) {
this.mainid = mainid;
}
public int getPage() {
return page;
}
public void setPage(int page) {
this.page = page;
}
public ActionErrors validate(ActionMapping actionMapping,
HttpServletRequest httpServletRequest) {
ActionErrors errors = new ActionErrors();
if (inpages == 0) {
inpages = 1;
}
if (page == 0) {
page = 1;
}
return errors;
}
public void reset(ActionMapping actionMapping,
HttpServletRequest httpServletRequest) {
}
public long getUserID() {
return userID;
}
public void setUserID(long userID) {
this.userID = userID;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -