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

📄 customerfindwherephoneequalsform.java

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

import org.apache.struts.action.ActionForm;

public class CustomerFindWherePhoneEqualsForm extends ActionForm
{
	private String phone;

	private String crudMethod;

	/** 
	 * 设置 phone
	 */
	public void setPhone(String phone)
	{
		this.phone = phone;
	}

	/** 
	 * 获得 phone
	 */
	public String getPhone()
	{
		return phone;
	}

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

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

}

⌨️ 快捷键说明

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