GoodsForm.java
上传用户:toby828
上传日期:2015-06-26
资源大小:8558k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

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 GoodsForm
  8.     extends ActionForm {
  9.   private Integer big;
  10.   private String creaTime;
  11.   private Float freePrice;
  12.   private String from;
  13.   private Integer id;
  14.   private String introduce;
  15.   private String name;
  16.   private Float nowPrice;
  17.   private Integer number;
  18.   private Integer small;
  19.   private String priture;
  20.   private Integer mark;
  21.   public Integer getBig() {
  22.     return big;
  23.   }
  24.   public Integer getMark() {
  25.      return mark;
  26.   }
  27.   public void setBig(Integer big) {
  28.     this.big = big;
  29.   }
  30.   public void setMark(Integer mark) {
  31.     this.mark = mark;
  32.   }
  33.   public void setSmall(Integer small) {
  34.     this.small = small;
  35.   }
  36.   public void setPriture(String priture) {
  37.     this.priture = priture;
  38.   }
  39.   public void setNumber(Integer number) {
  40.     this.number = number;
  41.   }
  42.   public void setNowPrice(Float nowPrice) {
  43.     this.nowPrice = nowPrice;
  44.   }
  45.   public void setName(String name) {
  46.     this.name = name;
  47.   }
  48.   public void setIntroduce(String introduce) {
  49.     this.introduce = introduce;
  50.   }
  51.   public void setId(Integer id) {
  52.     this.id = id;
  53.   }
  54.   public void setFrom(String from) {
  55.     this.from = from;
  56.   }
  57.   public void setFreePrice(Float freePrice) {
  58.     this.freePrice = freePrice;
  59.   }
  60.   public void setCreaTime(String creaTime) {
  61.     this.creaTime = creaTime;
  62.   }
  63.   public String getCreaTime() {
  64.     return creaTime;
  65.   }
  66.   public Float getFreePrice() {
  67.     return freePrice;
  68.   }
  69.   public String getPicture() {
  70.     return priture;
  71.   }
  72.   public String getFrom() {
  73.     return from;
  74.   }
  75.   public Integer getId() {
  76.     return id;
  77.   }
  78.   public String getIntroduce() {
  79.     return introduce;
  80.   }
  81.   public String getName() {
  82.     return name;
  83.   }
  84.   public Float getNowPrice() {
  85.     return nowPrice;
  86.   }
  87.   public Integer getNumber() {
  88.     return number;
  89.   }
  90.   public Integer getSmall() {
  91.     return small;
  92.   }
  93.   public ActionErrors validate(ActionMapping actionMapping,
  94.                                HttpServletRequest httpServletRequest) {
  95.     /** @todo: finish this method, this is just the skeleton.*/
  96.     return null;
  97.   }
  98.   public void reset(ActionMapping actionMapping,
  99.                     HttpServletRequest servletRequest) {
  100.   }
  101. }