?? 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 + -