📄 chanceentity.java
字号:
package crm.entity.sal;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* ChanceEntity(实体类) 对应 销售机会表( sal_chance)
*/
public class ChanceEntity implements java.io.Serializable {
private static final long serialVersionUID = 2364135791314654304L;
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 Long chcCreateId; //创建人编号
private String chcCreateBy; //创建人
private Date chcCreateDate; //创建日期
private Long chcDueId; //被指派人ID
private String chcDueTo; //指派给
private Date chcDueDate; //指派时间
private String chcStatus; //状态
private Set salPlans = new HashSet(0); // Set 接口。位于1的一方
// Constructors
/** default constructor */
public ChanceEntity() {
}
/** minimal constructor */
public ChanceEntity(String chcCustName, String chcTitle, Integer chcRate,
String chcDesc, Long chcCreateId, String chcCreateBy,
Date chcCreateDate, String chcStatus) {
this.chcCustName = chcCustName;
this.chcTitle = chcTitle;
this.chcRate = chcRate;
this.chcDesc = chcDesc;
this.chcCreateId = chcCreateId;
this.chcCreateBy = chcCreateBy;
this.chcCreateDate = chcCreateDate;
this.chcStatus = chcStatus;
}
/** full constructor */
public ChanceEntity(String chcSource, String chcCustName, String chcTitle,
Integer chcRate, String chcLinkman, String chcTel, String chcDesc,
Long chcCreateId, String chcCreateBy, Date chcCreateDate,
Long chcDueId, String chcDueTo, Date 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.chcCreateId = chcCreateId;
this.chcCreateBy = chcCreateBy;
this.chcCreateDate = chcCreateDate;
this.chcDueId = chcDueId;
this.chcDueTo = chcDueTo;
this.chcDueDate = chcDueDate;
this.chcStatus = chcStatus;
this.salPlans = salPlans;
}
// Property accessors
public Long getChcId() {
return this.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 Long getChcCreateId() {
return this.chcCreateId;
}
public void setChcCreateId(Long chcCreateId) {
this.chcCreateId = chcCreateId;
}
public String getChcCreateBy() {
return this.chcCreateBy;
}
public void setChcCreateBy(String chcCreateBy) {
this.chcCreateBy = chcCreateBy;
}
public Date getChcCreateDate() {
return this.chcCreateDate;
}
public void setChcCreateDate(Date chcCreateDate) {
this.chcCreateDate = chcCreateDate;
}
public Long getChcDueId() {
return this.chcDueId;
}
public void setChcDueId(Long chcDueId) {
this.chcDueId = chcDueId;
}
public String getChcDueTo() {
return this.chcDueTo;
}
public void setChcDueTo(String chcDueTo) {
this.chcDueTo = chcDueTo;
}
public Date getChcDueDate() {
return this.chcDueDate;
}
public void setChcDueDate(Date 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 + -