DownLoadActionForm.java
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. package com.chinacannel.xlchemical.struts.ActionForm;
  2. import javax.servlet.http.*;
  3. import org.apache.struts.action.*;
  4. import org.apache.struts.upload.*;
  5. public class DownLoadActionForm extends ActionForm {
  6.     private Long id = new Long(0);
  7.     private String cnTitle;
  8.     private FormFile downLoadImg = null;
  9.     private Long imageID = new Long(0);
  10.     private String summary;
  11.     private FormFile image = null;
  12.     private Long fileID = null;
  13.     private Long order;
  14.     private Long type = new Long(0);
  15.     public ActionErrors validate(ActionMapping actionMapping,
  16.                                  HttpServletRequest httpServletRequest) {
  17.         /** @todo: finish this method, this is just the skeleton.*/
  18.         return null;
  19.     }
  20.     public void reset(ActionMapping actionMapping,
  21.                       HttpServletRequest servletRequest) {
  22.     }
  23.     public String getCnTitle() {
  24.         return cnTitle;
  25.     }
  26.     public FormFile getDownLoadImg() {
  27.         return downLoadImg;
  28.     }
  29.     public Long getId() {
  30.         return id;
  31.     }
  32.     public Long getImageID() {
  33.         return imageID;
  34.     }
  35.     public FormFile getImage() {
  36.         return image;
  37.     }
  38.     public String getSummary() {
  39.         return summary;
  40.     }
  41.     public Long getFileID() {
  42.         return fileID;
  43.     }
  44.     public Long getOrder() {
  45.         return order;
  46.     }
  47.     public Long getType() {
  48.         return type;
  49.     }
  50.     public void setCnTitle(String cnTitle) {
  51.         this.cnTitle = cnTitle;
  52.     }
  53.     public void setDownLoadImg(FormFile downLoadImg) {
  54.         this.downLoadImg = downLoadImg;
  55.     }
  56.     public void setId(Long id) {
  57.         this.id = id;
  58.     }
  59.     public void setImageID(Long imageID) {
  60.         this.imageID = imageID;
  61.     }
  62.     public void setImage(FormFile image) {
  63.         this.image = image;
  64.     }
  65.     public void setSummary(String summary) {
  66.         this.summary = summary;
  67.     }
  68.     public void setFileID(Long fileID) {
  69.         this.fileID = fileID;
  70.     }
  71.     public void setOrder(Long order) {
  72.         this.order = order;
  73.     }
  74.     public void setType(Long type) {
  75.         this.type = type;
  76.     }
  77. }