AfficheForm.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:3k
源码类别:
Jsp/Servlet
开发平台:
Java
- //Created by MyEclipse Struts
- // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
- package com.oa.module.pub.affiche;
- import javax.servlet.http.HttpServletRequest;
- import org.apache.struts.action.ActionErrors;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionMapping;
- import org.apache.struts.upload.FormFile;
- /**
- * MyEclipse Struts
- * Creation date: 01-21-2008
- *
- * XDoclet definition:
- * @struts.form name="afficheForm"
- */
- public class AfficheForm extends ActionForm {
- // --------------------------------------------------------- Instance Variables
- private int aid;
- private String atitle;
- private String acontent;
- private String affixname;
- private String affixpath;
- private String asendTime;
- private String arealTime;
- private String areguTime;
- private String astate;
- private String funo;
- private String uno;
- private String amemo;
- private String method;
- private FormFile myfile;
- // --------------------------------------------------------- Methods
- /**
- * Method validate
- * @param mapping
- * @param request
- * @return ActionErrors
- */
- public ActionErrors validate(
- ActionMapping mapping,
- HttpServletRequest request) {
- return null;
- }
- /**
- * Method reset
- * @param mapping
- * @param request
- */
- public void reset(ActionMapping mapping, HttpServletRequest request) {
- }
- public String getAcontent() {
- return acontent;
- }
- public void setAcontent(String acontent) {
- this.acontent = acontent;
- }
- public String getAffixname() {
- return affixname;
- }
- public void setAffixname(String affixname) {
- this.affixname = affixname;
- }
- public String getAffixpath() {
- return affixpath;
- }
- public void setAffixpath(String affixpath) {
- this.affixpath = affixpath;
- }
- public String getAmemo() {
- return amemo;
- }
- public void setAmemo(String amemo) {
- this.amemo = amemo;
- }
- public String getArealTime() {
- return arealTime;
- }
- public void setArealTime(String arealTime) {
- this.arealTime = arealTime;
- }
- public String getAreguTime() {
- return areguTime;
- }
- public void setAreguTime(String areguTime) {
- this.areguTime = areguTime;
- }
- public String getAsendTime() {
- return asendTime;
- }
- public void setAsendTime(String asendTime) {
- this.asendTime = asendTime;
- }
- public String getAstate() {
- return astate;
- }
- public void setAstate(String astate) {
- this.astate = astate;
- }
- public String getAtitle() {
- return atitle;
- }
- public void setAtitle(String atitle) {
- this.atitle = atitle;
- }
- public String getFuno() {
- return funo;
- }
- public void setFuno(String funo) {
- this.funo = funo;
- }
- public String getMethod() {
- return method;
- }
- public void setMethod(String method) {
- this.method = method;
- }
- public String getUno() {
- return uno;
- }
- public void setUno(String uno) {
- this.uno = uno;
- }
- public FormFile getMyfile() {
- return myfile;
- }
- public void setMyfile(FormFile myfile) {
- this.myfile = myfile;
- }
- public int getAid() {
- return aid;
- }
- public void setAid(int aid) {
- this.aid = aid;
- }
- }