cstcustomerform.java

来自「实现用户关系管理系统」· Java 代码 · 共 40 行

JAVA
40
字号
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package org.jb.y2t308.team3.web.form;


import org.jb.common.web.form.BaseForm;
import org.jb.y2t308.team3.entity.CstCustomer;

/** 
 * MyEclipse Struts
 * Creation date: 02-11-2009
 * 
 * XDoclet definition:
 * @struts.form name="cstCustomerForm"
 */
public class CstCustomerForm extends BaseForm {
	/*
	 * Generated fields
	 */
	
	
	/** cstCustomer property */
	private CstCustomer item=new CstCustomer();

	/**
	 * @return the item
	 */
	public CstCustomer getItem() {
		return item;
	}

	/**
	 * @param item the item to set
	 */
	public void setItem(CstCustomer item) {
		this.item = item;
	}
}

⌨️ 快捷键说明

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