MenuActionForm.java~17~
上传用户: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.     private Long superiorID = 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 Long getId() {
  24.         return id;
  25.     }
  26.     public FormFile getMenuImg() {
  27.         return menuImg;
  28.     }
  29.     public String getName() {
  30.         return name;
  31.     }
  32.     public Long getOrder() {
  33.         return order;
  34.     }
  35.     public Long getImageID() {
  36.         return imageID;
  37.     }
  38.     public Long getIndex() {
  39.         return index;
  40.     }
  41.     public Long getType() {
  42.         return type;
  43.     }
  44.     public void setId(Long id) {
  45.         this.id = id;
  46.     }
  47.     public void setMenuImg(FormFile menuImg) {
  48.         this.menuImg = menuImg;
  49.     }
  50.     public void setName(String name) {
  51.         this.name = name;
  52.     }
  53.     public void setOrder(Long order) {
  54.         this.order = order;
  55.     }
  56.     public void setImageID(Long imageID) {
  57.         this.imageID = imageID;
  58.     }
  59.     public void setIndex(Long index) {
  60.         this.index = index;
  61.     }
  62.     public void setType(Long type) {
  63.         this.type = type;
  64.     }
  65. }