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

📄 customertypeform.java

📁 由于跟踪客户的购物意向
💻 JAVA
字号:
package com.relationinfo.customertrace.struts.forms;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

public class CustomerTypeForm extends ActionForm
{
	private String customertypecode;

	private String customertypename;

	private String crudMethod;

	/** 
	 * 设置 customertypecode
	 */
	public void setCustomertypecode(String customertypecode)
	{
		this.customertypecode = customertypecode;
	}

	/** 
	 * 获得 customertypecode
	 */
	public String getCustomertypecode()
	{
		return customertypecode;
	}

	/** 
	 * 设置 customertypename
	 */
	public void setCustomertypename(String customertypename)
	{
		this.customertypename = customertypename;
	}

	/** 
	 * 获得 customertypename
	 */
	public String getCustomertypename()
	{
		return customertypename;
	}

	/** 
	 * 设置 crudMethod
	 */
	public void setCrudMethod(String crudMethod)
	{
		this.crudMethod = crudMethod;
	}

	/** 
	 * 获得 crudMethod
	 */
	public String getCrudMethod()
	{
		return crudMethod;
	}

	/**
	 * Method 'reset'
	 * 
	 */
	public void reset()
	{
		customertypecode = "";
		customertypename = "";
	}

	/**
	 * Method 'validate'
	 * 
	 * @param mapping
	 * @param request
	 * @return ActionErrors
	 */
	public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
	{
		ActionErrors _errors = new ActionErrors();
		return _errors;
	}

}

⌨️ 快捷键说明

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