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

📄 sampleproductform.java

📁 这是本人曾经在公司里用的,内部开发框架,基于struts+hibernate今天分享给大家
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package cn.bway.foreigntrade.repertory.sample.product.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="sampleForm"
 */
public class SampleproductForm extends BaseForm {
	/*
	 * Generated fields
	 */

	private String id;
    private String codes;
    private String numbers;
    private String describes;
    private String musttime;
    private String entertime;
    private String imgess;
    private String productid;
    private String documentid;


   // Constructors

   public String getProductid() {
		return productid;
	}


	public void setProductid(String productid) {
		this.productid = productid;
	}


public SampleproductForm(String codes, String numbers, String describes, String musttime, String entertime, String imgess, String documentid) {
		super();
		this.codes = codes;
		this.numbers = numbers;
		this.describes = describes;
		this.musttime = musttime;
		this.entertime = entertime;
		this.imgess = imgess;
		this.documentid = documentid;
	}


public String getDocumentid() {
		return documentid;
	}


	public void setDocumentid(String documentid) {
		this.documentid = documentid;
	}


public String getCodes() {
	return codes;
}


public void setCodes(String codes) {
	this.codes = codes;
}


public String getDescribes() {
	return describes;
}


public void setDescribes(String describes) {
	this.describes = describes;
}


public String getEntertime() {
	return entertime;
}


public void setEntertime(String entertime) {
	this.entertime = entertime;
}


public String getId() {
	return id;
}


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


public String getImgess() {
	return imgess;
}


public void setImgess(String imgess) {
	this.imgess = imgess;
}


public String getMusttime() {
	return musttime;
}


public void setMusttime(String musttime) {
	this.musttime = musttime;
}


public String getNumbers() {
	return numbers;
}


public void setNumbers(String numbers) {
	this.numbers = numbers;
}


public SampleproductForm(String codes, String numbers, String describes, String musttime, String entertime, String imgess) {
	super();
	this.codes = codes;
	this.numbers = numbers;
	this.describes = describes;
	this.musttime = musttime;
	this.entertime = entertime;
	this.imgess = imgess;
}


public SampleproductForm(String codes, String numbers, String describes, String musttime, String entertime, String imgess, String productid, String documentid) {
	super();
	this.codes = codes;
	this.numbers = numbers;
	this.describes = describes;
	this.musttime = musttime;
	this.entertime = entertime;
	this.imgess = imgess;
	this.productid = productid;
	this.documentid = documentid;
}


public SampleproductForm() {
}

   
  
}

⌨️ 快捷键说明

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