📄 salchance.java
字号:
package com.t53.crm4.common.entity;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Set;
/**
* SalChance generated by MyEclipse Persistence Tools
*/
public class SalChance implements java.io.Serializable {
// Fields
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;
private String chcDueTo;
private Date chcDueDate;
private String chcStatus;
private List salPlans = new ArrayList();
// Constructors
/** default constructor */
public SalChance() {
}
/** minimal constructor */
public SalChance(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;
}
// Property accessors
/*
* public String getChaccretedatestring() {
*
* SimpleDateFormat simpldatefmt = new SimpleDateFormat("yyyy-MM-dd
* hh:mm:ss"); String strCurrenTime =
* simpldatefmt.format(this.chcCreateDate); return strCurrenTime; }
*/
/*
* public void setChaccretedatestring(String chaccretedatestring) {
* this.chaccretedatestring = chaccretedatestring; try { if
* (this.chaccretedatestring != null) {
*
* Date date = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss")
* .parse(this.chaccretedatestring); this.chcCreateDate = date;
* } } catch (ParseException e) { // TODO Auto-generated catch block
* e.printStackTrace(); } }
*/
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 List getSalPlans() {
return salPlans;
}
public void setSalPlans(List salPlans) {
this.salPlans = salPlans;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -