CountForm.java
上传用户:quasar007
上传日期:2022-08-11
资源大小:4067k
文件大小:1k
源码类别:

企业管理

开发平台:

Java

  1. package com.domain;
  2. import org.apache.struts.action.*;
  3. import javax.servlet.http.*;
  4. public class CountForm extends ActionForm {
  5.   private String myd;
  6.   private Integer number;
  7.   public String getMyd() {
  8.     return myd;
  9.   }
  10.   public void setMyd(String myd) {
  11.     this.myd = myd;
  12.   }
  13.   public Integer getNumber() {
  14.     return number;
  15.   }
  16.   public void setNumber(Integer number) {
  17.     this.number = number;
  18.   }
  19.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  20.     /**@todo: finish this method, this is just the skeleton.*/
  21.     return null;
  22.   }
  23.   public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  24.   }
  25. }