MenuActionForm.java~14~
上传用户: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 MenuActionForm extends ActionForm {
  6.     private Long id = new Long(0);
  7.     private String name;
  8.     private Long order;
  9.     private FormFile menuImg = null;
  10.     private Long imageID = new Long(0);
  11.     private Long index = new Long(0);
  12.     private Long type = new Long(0);
  13.     public ActionErrors validate(ActionMapping actionMapping,
  14.                                  HttpServletRequest httpServletRequest) {
  15.         /** @todo: finish this method, this is just the skeleton.*/
  16.         return null;
  17.     }
  18.     public void reset(ActionMapping actionMapping,
  19.                       HttpServletRequest servletRequest) {
  20.     }
  21.     public Long getId() {
  22.         return id;
  23.     }
  24.     public FormFile getMenuImg() {
  25.         return menuImg;
  26.     }
  27.     public String getName() {
  28.         return name;
  29.     }
  30.     public String getOrder() {
  31.         return order;
  32.     }
  33.     public Long getImageID() {
  34.         return imageID;
  35.     }
  36.     public Long getIndex() {
  37.         return index;
  38.     }
  39.     public Long getType() {
  40.         return type;
  41.     }
  42.     public void setId(Long id) {
  43.         this.id = id;
  44.     }
  45.     public void setMenuImg(FormFile menuImg) {
  46.         this.menuImg = menuImg;
  47.     }
  48.     public void setName(String name) {
  49.         this.name = name;
  50.     }
  51.     public void setOrder(String order) {
  52.         this.order = order;
  53.     }
  54.     public void setImageID(Long imageID) {
  55.         this.imageID = imageID;
  56.     }
  57.     public void setIndex(Long index) {
  58.         this.index = index;
  59.     }
  60.     public void setType(Long type) {
  61.         this.type = type;
  62.     }
  63. }