FolderForm.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:
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.folder.form;
- import javax.servlet.http.HttpServletRequest;
- import org.apache.struts.action.ActionErrors;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionMapping;
- /**
- * MyEclipse Struts Creation date: 01-28-2008
- *
- * XDoclet definition:
- *
- * @struts.form name="folderForm"
- */
- public class FolderForm extends ActionForm {
- // --------------------------------------------------------- Instance
- // Variables
- private String forder;
- private String fordername;
- private String userid;
- private String username;
- private String fatherid;
- private String createtime;
- private String method;
- // --------------------------------------------------------- Methods
- public String getMethod() {
- return method;
- }
- public void setMethod(String method) {
- this.method = method;
- }
- /**
- * Method validate
- *
- * @param mapping
- * @param request
- * @return ActionErrors
- */
- public ActionErrors validate(ActionMapping mapping,
- HttpServletRequest request) {
- // TODO Auto-generated method stub
- return null;
- }
- /**
- * Method reset
- *
- * @param mapping
- * @param request
- */
- public void reset(ActionMapping mapping, HttpServletRequest request) {
- // TODO Auto-generated method stub
- }
- public String getCreatetime() {
- return createtime;
- }
- public void setCreatetime(String createtime) {
- this.createtime = createtime;
- }
- public String getFatherid() {
- return fatherid;
- }
- public void setFatherid(String fatherid) {
- this.fatherid = fatherid;
- }
- public String getForder() {
- return forder;
- }
- public void setForder(String forder) {
- this.forder = forder;
- }
- public String getFordername() {
- return fordername;
- }
- public void setFordername(String fordername) {
- this.fordername = fordername;
- }
- public String getUserid() {
- return userid;
- }
- public void setUserid(String userid) {
- this.userid = userid;
- }
- public String getUsername() {
- return username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- }