DownLoadActionForm.java~2~
资源名称:shihua.rar [点击查看]
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:2k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- package com.chinacannel.xlchemical.struts.ActionForm;
- import javax.servlet.http.*;
- import org.apache.struts.action.*;
- import org.apache.struts.upload.*;
- public class DownLoadActionForm extends ActionForm {
- private Long id = new Long(0);
- private String cnTitle;
- private FormFile downLoadImg = null;
- private Long imageID = new Long(0);
- private String summary;
- private FormFile image = null;
- private Long fileID = null;
- private Long order;
- private Long type = new Long(0);
- public ActionErrors validate(ActionMapping actionMapping,
- HttpServletRequest httpServletRequest) {
- /** @todo: finish this method, this is just the skeleton.*/
- return null;
- }
- public void reset(ActionMapping actionMapping,
- HttpServletRequest servletRequest) {
- }
- public String getCnTitle() {
- return cnTitle;
- }
- public FormFile getDownLoadImg() {
- return downLoadImg;
- }
- public Long getId() {
- return id;
- }
- public Long getImageID() {
- return imageID;
- }
- public FormFile getImage() {
- return image;
- }
- public String getSummary() {
- return summary;
- }
- public Long getFileID() {
- return fileID;
- }
- public Long getOrder() {
- return order;
- }
- public void setCnTitle(String cnTitle) {
- this.cnTitle = cnTitle;
- }
- public void setDownLoadImg(FormFile downLoadImg) {
- this.downLoadImg = downLoadImg;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public void setImageID(Long imageID) {
- this.imageID = imageID;
- }
- public void setImage(FormFile image) {
- this.image = image;
- }
- public void setSummary(String summary) {
- this.summary = summary;
- }
- public void setFileID(Long fileID) {
- this.fileID = fileID;
- }
- public void setOrder(Long order) {
- this.order = order;
- }
- }