AffairTypeForm.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.affair.affairtype;
- import java.util.HashSet;
- import java.util.Set;
- import javax.servlet.http.HttpServletRequest;
- import org.apache.struts.action.ActionErrors;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionMapping;
- /**
- * * 事务类别Actionform
- * MyEclipse Struts
- * Creation date: 01-20-2008
- *
- * XDoclet definition:
- * @struts.form name="affairTypeForm"
- */
- public class AffairTypeForm extends ActionForm {
- /**
- *
- */
- private static final long serialVersionUID = 1434450067985704410L;
- // --------------------------------------------------------- Instance Variables
- private long rtid;
- private String tname;
- private String txmlpath;
- private String ttime;
- private String uno;
- private String tflag;
- private long tstep;
- private Set transpower = new HashSet();
- private String task;
- // --------------------------------------------------------- Methods
- /**
- * 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) {
- this.tflag="0";
- // this.editedtype
- // this.task="editedtype";
- }
- public long getRtid() {
- return rtid;
- }
- public void setRtid(long rtid) {
- this.rtid = rtid;
- }
- public String getTflag() {
- return tflag;
- }
- public void setTflag(String tflag) {
- this.tflag = tflag;
- }
- public String getTname() {
- return tname;
- }
- public void setTname(String tname) {
- this.tname = tname;
- }
- public long getTstep() {
- return tstep;
- }
- public void setTstep(long tstep) {
- this.tstep = tstep;
- }
- public String getTtime() {
- return ttime;
- }
- public void setTtime(String ttime) {
- this.ttime = ttime;
- }
- public String getTxmlpath() {
- return txmlpath;
- }
- public void setTxmlpath(String txmlpath) {
- this.txmlpath = txmlpath;
- }
- public String getUno() {
- return uno;
- }
- public void setUno(String uno) {
- this.uno = uno;
- }
- public Set getTranspower() {
- return transpower;
- }
- public void setTranspower(Set transpower) {
- this.transpower = transpower;
- }
- public String getTask() {
- return task;
- }
- public void setTask(String task) {
- this.task = task;
- }
- }