📄 salchance.java
字号:
package com.accp.entity.jb_crm_team0;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
public class SalChance implements java.io.Serializable {
private Long chcId;
private String chcSource;
private String chcCustName;
private String chcTitle;
private Integer chcRate;
private String chcLinkman;
private String chcTel;
private String chcDesc;
private String chcCreateBy;
private String chcCreateDate;
private String chcDueTo;
private String chcDueDate;
private String chcStatus;
private Set salPlans = new HashSet(0);
public SalChance() {
}
public SalChance(String chcCustName, String chcTitle, Integer chcRate,
String chcDesc, String chcCreateBy, String chcCreateDate,
String chcStatus) {
this.chcCustName = chcCustName;
this.chcTitle = chcTitle;
this.chcRate = chcRate;
this.chcDesc = chcDesc;
this.chcCreateBy = chcCreateBy;
this.chcCreateDate = chcCreateDate;
this.chcStatus = chcStatus;
}
public SalChance(String chcSource, String chcCustName, String chcTitle,
Integer chcRate, String chcLinkman, String chcTel, String chcDesc,
String chcCreateBy, String chcCreateDate, String chcDueTo,
String chcDueDate, String chcStatus, Set salPlans) {
this.chcSource = chcSource;
this.chcCustName = chcCustName;
this.chcTitle = chcTitle;
this.chcRate = chcRate;
this.chcLinkman = chcLinkman;
this.chcTel = chcTel;
this.chcDesc = chcDesc;
this.chcCreateBy = chcCreateBy;
this.chcCreateDate = chcCreateDate;
this.chcDueTo = chcDueTo;
this.chcDueDate = chcDueDate;
this.chcStatus = chcStatus;
this.salPlans = salPlans;
}
public Long getChcId() {
return chcId;
}
public void setChcId(Long chcId) {
this.chcId = chcId;
}
public String getChcSource() {
return this.chcSource;
}
public void setChcSource(String chcSource) {
this.chcSource = chcSource;
}
public String getChcCustName() {
return this.chcCustName;
}
public void setChcCustName(String chcCustName) {
this.chcCustName = chcCustName;
}
public String getChcTitle() {
return this.chcTitle;
}
public void setChcTitle(String chcTitle) {
this.chcTitle = chcTitle;
}
public Integer getChcRate() {
return this.chcRate;
}
public void setChcRate(Integer chcRate) {
this.chcRate = chcRate;
}
public String getChcLinkman() {
return this.chcLinkman;
}
public void setChcLinkman(String chcLinkman) {
this.chcLinkman = chcLinkman;
}
public String getChcTel() {
return this.chcTel;
}
public void setChcTel(String chcTel) {
this.chcTel = chcTel;
}
public String getChcDesc() {
return this.chcDesc;
}
public void setChcDesc(String chcDesc) {
this.chcDesc = chcDesc;
}
public String getChcCreateBy() {
return this.chcCreateBy;
}
public void setChcCreateBy(String chcCreateBy) {
this.chcCreateBy = chcCreateBy;
}
public String getChcDueTo() {
return this.chcDueTo;
}
public void setChcDueTo(String chcDueTo) {
this.chcDueTo = chcDueTo;
}
public String getChcCreateDate() {
return chcCreateDate;
}
public void setChcCreateDate(String chcCreateDate) {
this.chcCreateDate = chcCreateDate;
}
public String getChcDueDate() {
return chcDueDate;
}
public void setChcDueDate(String chcDueDate) {
this.chcDueDate = chcDueDate;
}
public String getChcStatus() {
return this.chcStatus;
}
public void setChcStatus(String chcStatus) {
this.chcStatus = chcStatus;
}
public Set getSalPlans() {
return this.salPlans;
}
public void setSalPlans(Set salPlans) {
this.salPlans = salPlans;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -