📄 chance.java
字号:
/**
*
*/
package com.qrsx.qrsxcrm.model;
/**
* 销售机会实体对象
* @author Administrator
*
*/
public class Chance
{
private String id; //主键
private String motif; //主题
private Client client; //销售对象客户(一对一)
private Employee employee; //负责人(一对一)
private String self; //公司优势
private String rival; //对手优势
private Double probability; //成功几率
private String remark; //备注
private Double balance; //预计成交金额
private String clientId;
private String employeeId;
/**
* @return the clientId
*/
public String getClientId() {
return clientId;
}
/**
* @param clientId the clientId to set
*/
public void setClientId(String clientId) {
this.clientId = clientId;
}
/**
* @return the employeeId
*/
public String getEmployeeId() {
return employeeId;
}
/**
* @param employeeId the employeeId to set
*/
public void setEmployeeId(String employeeId) {
this.employeeId = employeeId;
}
/**
* @return the balance
*/
public Double getBalance() {
return balance;
}
/**
* @param balance the balance to set
*/
public void setBalance(Double balance) {
this.balance = balance;
}
/**
* @return the client
*/
public Client getClient() {
return client;
}
/**
* @param client the client to set
*/
public void setClient(Client client) {
this.client = client;
}
/**
* @return the employee
*/
public Employee getEmployee() {
return employee;
}
/**
* @param employee the employee to set
*/
public void setEmployee(Employee employee) {
this.employee = employee;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the motif
*/
public String getMotif() {
return motif;
}
/**
* @param motif the motif to set
*/
public void setMotif(String motif) {
this.motif = motif;
}
/**
* @return the probability
*/
public Double getProbability() {
return probability;
}
/**
* @param probability the probability to set
*/
public void setProbability(Double probability) {
this.probability = probability;
}
/**
* @return the remark
*/
public String getRemark() {
return remark;
}
/**
* @param remark the remark to set
*/
public void setRemark(String remark) {
this.remark = remark;
}
/**
* @return the rival
*/
public String getRival() {
return rival;
}
/**
* @param rival the rival to set
*/
public void setRival(String rival) {
this.rival = rival;
}
/**
* @return the self
*/
public String getSelf() {
return self;
}
/**
* @param self the self to set
*/
public void setSelf(String self) {
this.self = self;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -