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