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

📄 d044185c9728001d1b69a3336d673cb1

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

import java.util.Date;
import java.util.Set;

/**
 * 客户实体类   与负责人为多对一
 * 
 * @author Administrator
 * 
 */
public class Client {
	private String id; 				// 主键
	private String clientName; 		// 客户名称
	private String clientId; 		// 客户编号
	private String telephone; 		// 客户电话
	private String address; 		// 客户住址
	private String postCard; 		// 客户邮编
	private Date createDate; 		// 客户创建日期
	private Integer clientTypeId; 	// 客户类型 级联客户类型id
	private String origin; 			// 客户来源
	private String employeeId; 		// 客户负责人
	private Employee employee; 		//级联客户负责人
	
	
	private Stock stock;			//级联一个采购单对象
	private Set<LinkMan> linkMan; 	// 级联一 个 联系人set集合
	private Set<ClientProduction> clientProductions; //级联一个客户产品集合
	/**
	 * @return the address
	 */
	public String getAddress() {
		return address;
	}
	/**
	 * @param address the address to set
	 */
	public void setAddress(String address) {
		this.address = address;
	}
	/**
	 * @return the clientId
	 */
	public String getClientId() {
		return clientId;
	}
	/**
	 * @param clientId the clientId to set
	 */
	public void setClientId(String clientId) {
		this.clientId = clientId;
	}
	/**
	 * @return the clientName
	 */
	public String getClientName() {
		return clientName;
	}
	/**
	 * @param clientName the clientName to set
	 */
	public void setClientName(String clientName) {
		this.clientName = clientName;
	}
	/**
	 * @return the clientProductions
	 */
	public Set<ClientProduction> getClientProductions() {
		return clientProductions;
	}
	/**
	 * @param clientProductions the clientProductions to set
	 */
	public void setClientProductions(Set<ClientProduction> clientProductions) {
		this.clientProductions = clientProductions;
	}
	/**
	 * @return the clientTypeId
	 */
	public Integer getClientTypeId() {
		return clientTypeId;
	}
	/**
	 * @param clientTypeId the clientTypeId to set
	 */
	public void setClientTypeId(Integer clientTypeId) {
		this.clientTypeId = clientTypeId;
	}
	/**
	 * @return the createDate
	 */
	public Date getCreateDate() {
		return createDate;
	}
	/**
	 * @param createDate the createDate to set
	 */
	public void setCreateDate(Date createDate) {
		this.createDate = createDate;
	}
	/**
	 * @return the employee
	 */
	public Employee getEmployee() {
		return employee;
	}
	/**
	 * @param employee the employee to set
	 */
	public void setEmployee(Employee employee) {
		this.employee = employee;
	}
	/**
	 * @return the employeeId
	 */
	public String getEmployeeId() {
		return employeeId;
	}
	/**
	 * @param employeeId the employeeId to set
	 */
	public void setEmployeeId(String employeeId) {
		this.employeeId = employeeId;
	}
	/**
	 * @return the id
	 */
	public String getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(String id) {
		this.id = id;
	}
	/**
	 * @return the linkMan
	 */
	public Set<LinkMan> getLinkMan() {
		return linkMan;
	}
	/**
	 * @param linkMan the linkMan to set
	 */
	public void setLinkMan(Set<LinkMan> linkMan) {
		this.linkMan = linkMan;
	}
	/**
	 * @return the origin
	 */
	public String getOrigin() {
		return origin;
	}
	/**
	 * @param origin the origin to set
	 */
	public void setOrigin(String origin) {
		this.origin = origin;
	}
	/**
	 * @return the postCard
	 */
	public String getPostCard() {
		return postCard;
	}
	/**
	 * @param postCard the postCard to set
	 */
	public void setPostCard(String postCard) {
		this.postCard = postCard;
	}
	/**
	 * @return the stock
	 */
	public Stock getStock() {
		return stock;
	}
	/**
	 * @param stock the stock to set
	 */
	public void setStock(Stock stock) {
		this.stock = stock;
	}
	/**
	 * @return the telephone
	 */
	public String getTelephone() {
		return telephone;
	}
	/**
	 * @param telephone the telephone to set
	 */
	public void setTelephone(String telephone) {
		this.telephone = telephone;
	}

	

}

⌨️ 快捷键说明

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