BigTypeForm.java
Upload User: toby828
Upload Date: 2015-06-26
Package Size: 8558k
Code Size: 1k
Category:

Jsp/Servlet

Development Platform:

Java

  1. package com.domain;
  2. import org.apache.struts.action.ActionForm;
  3. import org.apache.struts.action.ActionErrors;
  4. import org.apache.struts.action.ActionMapping;
  5. import javax.servlet.http.HttpServletRequest;
  6. //商品大类别bean
  7. public class BigTypeForm
  8.     extends ActionForm {
  9.   private String bigName="";
  10.   private String creaTime="";
  11.   private Integer id=Integer.valueOf("-1");
  12.   public BigTypeForm(){}
  13.   public String getBigName() {
  14.     return bigName;
  15.   }
  16.   public void setBigName(String bigName) {
  17.     this.bigName = bigName;
  18.   }
  19.   public void setId(Integer id) {
  20.     this.id = id;
  21.   }
  22.   public void setCreaTime(String creaTime) {
  23.     this.creaTime = creaTime;
  24.   }
  25.   public String getCreaTime() {
  26.     return creaTime;
  27.   }
  28.   public Integer getId() {
  29.     return id;
  30.   }
  31.   public ActionErrors validate(ActionMapping actionMapping,
  32.                                HttpServletRequest httpServletRequest) {
  33.       /** @todo: finish this method, this is just the skeleton.*/
  34.     return null;
  35.   }
  36.   public void reset(ActionMapping actionMapping,
  37.                     HttpServletRequest servletRequest) {
  38.   }
  39. }