⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 canceldocumentform.java

📁 这是本人曾经在公司里用的,内部开发框架,基于struts+hibernate今天分享给大家
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package cn.bway.foreigntrade.repertory.cancel.document.form;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import cn.bway.common.form.BaseForm;

/** 
 * MyEclipse Struts
 * Creation date: 03-20-2008
 * 
 * XDoclet definition:
 * @struts.form name="canceldocumentForm"
 */
public class CanceldocumentForm extends BaseForm {
	/*
	 * Generated fields
	 */

	 private String id;
     private String stockid;
     private String productionid;
     private String productionnames;
     private String linkman;
     private String tel;
     private String faxs;
     private String documentname;
     private String checks;
     private String times;
	/*
	 * Generated Methods
	 */


	public CanceldocumentForm(String id, String stockid, String productionid, String productionnames, String linkman, String tel, String faxs, String documentname, String checks, String times) {
		super();
		this.id = id;
		this.stockid = stockid;
		this.productionid = productionid;
		this.productionnames = productionnames;
		this.linkman = linkman;
		this.tel = tel;
		this.faxs = faxs;
		this.documentname = documentname;
		this.checks = checks;
		this.times = times;
	}

	public String getTimes() {
		return times;
	}

	public void setTimes(String times) {
		this.times = times;
	}

	public String getChecks() {
		return checks;
	}

	public void setChecks(String checks) {
		this.checks = checks;
	}

	public String getDocumentname() {
		return documentname;
	}

	public void setDocumentname(String documentname) {
		this.documentname = documentname;
	}

	public String getFaxs() {
		return faxs;
	}

	public void setFaxs(String faxs) {
		this.faxs = faxs;
	}

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public String getLinkman() {
		return linkman;
	}

	public void setLinkman(String linkman) {
		this.linkman = linkman;
	}

	public String getProductionid() {
		return productionid;
	}

	public void setProductionid(String productionid) {
		this.productionid = productionid;
	}

	public String getProductionnames() {
		return productionnames;
	}

	public void setProductionnames(String productionnames) {
		this.productionnames = productionnames;
	}

	public String getStockid() {
		return stockid;
	}

	public void setStockid(String stockid) {
		this.stockid = stockid;
	}

	public String getTel() {
		return tel;
	}

	public void setTel(String tel) {
		this.tel = tel;
	}

	/** 
	 * 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 CanceldocumentForm() {
//		super();
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -