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

📄 d0fe197bd131001d139f992bfca89756

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻
字号:
package com.qrsx.qrsxcrm.form;

import java.util.Set;

import javax.servlet.http.HttpServletRequest;

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

import com.qrsx.qrsxcrm.model.ClientType;
import com.qrsx.qrsxcrm.model.Employee;

public class PotentialForm extends ActionForm {
	
	private String id;					//主键
	private String potentiaName;		//潜在客户名称
	private String telephone;			//潜在客户的电话
	private String address;				//地址
	private String postCard;			//邮编
	private String probability;			//潜在客户的可行性
	private String clientTypeId;		//客户类型   级联客户类型表
	private String employeeId;			//此潜在客户的负责人
	private String origin;				//客户来源
	private String createDate;			//客户的创建日期
	private String remark;				//备注
	private String email;				//email
	private String fax;					//传真
	private Employee employee;			//级联一个负责人
	private ClientType clientType;		//级联一个客户类型
	private Set linkMen;				//级联一个联系人的集合
	
	public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
		ActionErrors errors = new ActionErrors();
		
		return errors;
	}
	/**
	 * @return the id
	 */
	public String getId() {
		return id;
	}
	/**
	 * @return the potentiaName
	 */
	public String getPotentiaName() {
		return potentiaName;
	}
	/**
	 * @return the telephone
	 */
	public String getTelephone() {
		return telephone;
	}
	/**
	 * @return the address
	 */
	public String getAddress() {
		return address;
	}
	/**
	 * @return the postCard
	 */
	public String getPostCard() {
		return postCard;
	}
	/**
	 * @return the probability
	 */
	public String getProbability() {
		return probability;
	}
	/**
	 * @return the clientTypeId
	 */
	public String getClientTypeId() {
		return clientTypeId;
	}
	/**
	 * @return the employeeId
	 */
	public String getEmployeeId() {
		return employeeId;
	}
	/**
	 * @return the origin
	 */
	public String getOrigin() {
		return origin;
	}
	/**
	 * @return the createDate
	 */
	public String getCreateDate() {
		return createDate;
	}
	/**
	 * @return the remark
	 */
	public String getRemark() {
		return remark;
	}
	/**
	 * @return the email
	 */
	public String getEmail() {
		return email;
	}
	/**
	 * @return the fax
	 */
	public String getFax() {
		return fax;
	}
	/**
	 * @return the employee
	 */
	public Employee getEmployee() {
		return employee;
	}
	/**
	 * @return the clientType
	 */
	public ClientType getClientType() {
		return clientType;
	}
	/**
	 * @return the linkMen
	 */
	public Set getLinkMen() {
		return linkMen;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(String id) {
		this.id = id;
	}
	/**
	 * @param potentiaName the potentiaName to set
	 */
	public void setPotentiaName(String potentiaName) {
		this.potentiaName = potentiaName;
	}
	/**
	 * @param telephone the telephone to set
	 */
	public void setTelephone(String telephone) {
		this.telephone = telephone;
	}
	/**
	 * @param address the address to set
	 */
	public void setAddress(String address) {
		this.address = address;
	}
	/**
	 * @param postCard the postCard to set
	 */
	public void setPostCard(String postCard) {
		this.postCard = postCard;
	}
	/**
	 * @param probability the probability to set
	 */
	public void setProbability(String probability) {
		this.probability = probability;
	}
	/**
	 * @param clientTypeId the clientTypeId to set
	 */
	public void setClientTypeId(String clientTypeId) {
		this.clientTypeId = clientTypeId;
	}
	/**
	 * @param employeeId the employeeId to set
	 */
	public void setEmployeeId(String employeeId) {
		this.employeeId = employeeId;
	}
	/**
	 * @param origin the origin to set
	 */
	public void setOrigin(String origin) {
		this.origin = origin;
	}
	/**
	 * @param createDate the createDate to set
	 */
	public void setCreateDate(String createDate) {
		this.createDate = createDate;
	}
	/**
	 * @param remark the remark to set
	 */
	public void setRemark(String remark) {
		this.remark = remark;
	}
	/**
	 * @param email the email to set
	 */
	public void setEmail(String email) {
		this.email = email;
	}
	/**
	 * @param fax the fax to set
	 */
	public void setFax(String fax) {
		this.fax = fax;
	}
	/**
	 * @param employee the employee to set
	 */
	public void setEmployee(Employee employee) {
		this.employee = employee;
	}
	/**
	 * @param clientType the clientType to set
	 */
	public void setClientType(ClientType clientType) {
		this.clientType = clientType;
	}
	/**
	 * @param linkMen the linkMen to set
	 */
	public void setLinkMen(Set linkMen) {
		this.linkMen = linkMen;
	}
}

⌨️ 快捷键说明

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