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

📄 colormanagementform.java

📁 这是本人曾经在公司里用的,内部开发框架,基于struts+hibernate今天分享给大家
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package cn.bway.foreigntrade.operation.colormanagement.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-08-2008
 * 
 * XDoclet definition:
 * @struts.form name="showColormanagementForm"
 */
public class ColormanagementForm extends BaseForm {
	/*
	 * Generated fields
	 */
	 private String id;
     private String colorcode;
     private String lily;
     private String names;
     private String patten;
     private String product;
     private String lamphouse;
     private String replycolor;
     private String accepttime;
     private String oknumber;
     private String oktime;
     private String transactor;
     private String notes;

	
	public ColormanagementForm() {
		super();
	}

	public ColormanagementForm(String colorcode, String lily, String names, String patten, String product, String lamphouse, String replycolor, String accepttime, String oknumber, String oktime, String transactor, String notes) {
		super();
		this.colorcode = colorcode;
		this.lily = lily;
		this.names = names;
		this.patten = patten;
		this.product = product;
		this.lamphouse = lamphouse;
		this.replycolor = replycolor;
		this.accepttime = accepttime;
		this.oknumber = oknumber;
		this.oktime = oktime;
		this.transactor = transactor;
		this.notes = notes;
	}

	public String getAccepttime() {
		return accepttime;
	}

	public void setAccepttime(String accepttime) {
		this.accepttime = accepttime;
	}

	public String getColorcode() {
		return colorcode;
	}

	public void setColorcode(String colorcode) {
		this.colorcode = colorcode;
	}

	public String getId() {
		return id;
	}

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

	public String getLamphouse() {
		return lamphouse;
	}

	public void setLamphouse(String lamphouse) {
		this.lamphouse = lamphouse;
	}

	public String getLily() {
		return lily;
	}

	public void setLily(String lily) {
		this.lily = lily;
	}

	public String getNames() {
		return names;
	}

	public void setNames(String names) {
		this.names = names;
	}

	public String getNotes() {
		return notes;
	}

	public void setNotes(String notes) {
		this.notes = notes;
	}

	public String getOknumber() {
		return oknumber;
	}

	public void setOknumber(String oknumber) {
		this.oknumber = oknumber;
	}

	public String getOktime() {
		return oktime;
	}

	public void setOktime(String oktime) {
		this.oktime = oktime;
	}

	public String getPatten() {
		return patten;
	}

	public void setPatten(String patten) {
		this.patten = patten;
	}

	public String getProduct() {
		return product;
	}

	public void setProduct(String product) {
		this.product = product;
	}

	public String getReplycolor() {
		return replycolor;
	}

	public void setReplycolor(String replycolor) {
		this.replycolor = replycolor;
	}

	public String getTransactor() {
		return transactor;
	}

	public void setTransactor(String transactor) {
		this.transactor = transactor;
	}

	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
	}

	
}

⌨️ 快捷键说明

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