📄 potential.java
字号:
package com.qrsx.qrsxcrm.model;
import java.util.Date;
import java.util.Set;
/**
* 潜在客户实体类
* @author Administrator
*
*/
public class Potential {
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 Date createDate; //客户的创建日期
private String remark; //备注
private String email; //email
private String fax; //传真
private Employee employee; //级联一个负责人
private ClientType clientType; //级联一个客户类型
private Set linkMen; //级联一个联系人的集合
/**
* @return the employee
*/
public Employee getEmployee() {
return employee;
}
/**
* @return the clientType
*/
public ClientType getClientType() {
return clientType;
}
/**
* @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;
}
public String getId() {
return id;
}
public String getPotentiaName() {
return potentiaName;
}
public String getTelephone() {
return telephone;
}
public String getAddress() {
return address;
}
public String getPostCard() {
return postCard;
}
public String getProbability() {
return probability;
}
public String getClientTypeId() {
return clientTypeId;
}
public String getEmployeeId() {
return employeeId;
}
public Set getLinkMen() {
return linkMen;
}
public String getOrigin() {
return origin;
}
public Date getCreateDate() {
return createDate;
}
public String getRemark() {
return remark;
}
public void setId(String id) {
this.id = id;
}
public void setPotentiaName(String potentiaName) {
this.potentiaName = potentiaName;
}
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 setProbability(String probability) {
this.probability = probability;
}
public void setClientTypeId(String clientTypeId) {
this.clientTypeId = clientTypeId;
}
public void setEmployeeId(String employeeId) {
this.employeeId = employeeId;
}
public void setLinkMen(Set linkMen) {
this.linkMen = linkMen;
}
public void setOrigin(String origin) {
this.origin = origin;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public void setRemark(String remark) {
this.remark = remark;
}
/**
* @return the email
*/
public String getEmail() {
return email;
}
/**
* @return the fax
*/
public String getFax() {
return fax;
}
/**
* @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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -