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

📄 client.java

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

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

/**
 * 客户实体类   与负责人为多对一
 * 
 * @author Administrator
 * 
 */
public class Client {
	
	private String id; 				// 主键
	
	private String clientName; 		// 客户名称
	
	private String clientCode; 		// 客户编号
	
	private String telephone; 		// 客户电话
	
	private String address; 		// 客户住址
	
	private String postCard; 		// 客户邮编
	
	private String fax;				//客户传真
	
	private Date createDate; 		// 客户创建日期
	
	
	private String origin; 			// 客户来源
	
	private String email;			//电子邮件
	
	private String remark;			//备注
	
	private String clientTypeId; 	// 客户类型 级联客户类型id
	
	private String employeeId; 		// 客户负责人id
	
	
	private ClientType clientType;  //级联一个客户类型
	
	private Employee employee; 		//级联客户负责人
	
	private Stock stock;			//级联一个采购单对象
	
	
	private Set linkMen; 			// 级联一 个 联系人set集合
	
	private Set clientProductions; //级联一个客户产品集合

	public String getId() {
		return id;
	}

	public String getClientName() {
		return clientName;
	}

	public String getClientCode() {
		return clientCode;
	}

	public String getTelephone() {
		return telephone;
	}

	public String getAddress() {
		return address;
	}

	public String getPostCard() {
		return postCard;
	}

	public Date getCreateDate() {
		return createDate;
	}

	public String getClientTypeId() {
		return clientTypeId;
	}

	public String getOrigin() {
		return origin;
	}

	public String getEmployeeId() {
		return employeeId;
	}

	public ClientType getClientType() {
		return clientType;
	}

	public Employee getEmployee() {
		return employee;
	}

	public Stock getStock() {
		return stock;
	}

	public Set getLinkMen() {
		return linkMen;
	}

	public Set getClientProductions() {
		return clientProductions;
	}

	public void setId(String id) {
		this.id = id;
	}

	public void setClientName(String clientName) {
		this.clientName = clientName;
	}

	public void setClientCode(String clientCode) {
		this.clientCode = clientCode;
	}

	public void setTelephone(String telephone) {
		this.telephone = telephone;
	}

	public void setAddress(String address) {
		this.address = address;
	}

	public void setPostCard(String postCard) {
		this.postCard = postCard;
	}

	public void setCreateDate(Date createDate) {
		this.createDate = createDate;
	}

	public void setClientTypeId(String clientTypeId) {
		this.clientTypeId = clientTypeId;
	}

	public void setOrigin(String origin) {
		this.origin = origin;
	}

	public void setEmployeeId(String employeeId) {
		this.employeeId = employeeId;
	}

	public void setClientType(ClientType clientType) {
		this.clientType = clientType;
	}

	public void setEmployee(Employee employee) {
		this.employee = employee;
	}

	public void setStock(Stock stock) {
		this.stock = stock;
	}

	public void setLinkMen(Set linkMen) {
		this.linkMen = linkMen;
	}

	public void setClientProductions(Set clientProductions) {
		this.clientProductions = clientProductions;
	}

	public String getFax() {
		return fax;
	}

	public void setFax(String fax) {
		this.fax = fax;
	}

	public String getEmail() {
		return email;
	}

	public String getRemark() {
		return remark;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public void setRemark(String remark) {
		this.remark = remark;
	}
	

}

⌨️ 快捷键说明

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