baseform.java

来自「一个jsp写的bbs」· Java 代码 · 共 52 行

JAVA
52
字号
package com.laoer.bbscs.web.form;

import org.apache.struts.validator.*;

/**
 * <p>Title: Tianyi BBS</p>
 *
 * <p>Description: BBSCS</p>
 *
 * <p>Copyright: Copyright (c) 2006</p>
 *
 * <p>Company: Laoer.com</p>
 *
 * @author Gong Tianyi
 * @version 7.0
 */
public class BaseForm
    extends ValidatorForm {

  private String action;
  private String ajax;
  private int total;

  public BaseForm() {
  }

  public void setAction(String action) {
    this.action = action;
  }

  public void setAjax(String ajax) {
    this.ajax = ajax;
  }

  public void setTotal(int total) {
    this.total = total;
  }

  public String getAction() {
    return action;
  }

  public String getAjax() {
    return ajax;
  }

  public int getTotal() {
    return total;
  }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?