📄 cstlost.java
字号:
package com.accp.entity.jb_crm_team0;
import java.util.Date;
/**
* CstLost entity.
*
* @author MyEclipse Persistence Tools
*/
public class CstLost implements java.io.Serializable {
// Fields
private Long lstId;
private CstCustomer cstCustomer;
private String lstCustManagerName;
private Date lstLastOrderDate;
private Date lstLostDate;
private String lstDelay;
private String lstReason;
private String lstStatus;
// Constructors
/** default constructor */
public CstLost() {
}
/** minimal constructor */
public CstLost(CstCustomer cstCustomer, String lstCustManagerName,
String lstStatus) {
this.cstCustomer = cstCustomer;
this.lstCustManagerName = lstCustManagerName;
this.lstStatus = lstStatus;
}
/** full constructor */
public CstLost(CstCustomer cstCustomer, String lstCustManagerName,
Date lstLastOrderDate, Date lstLostDate, String lstDelay,
String lstReason, String lstStatus) {
this.cstCustomer = cstCustomer;
this.lstCustManagerName = lstCustManagerName;
this.lstLastOrderDate = lstLastOrderDate;
this.lstLostDate = lstLostDate;
this.lstDelay = lstDelay;
this.lstReason = lstReason;
this.lstStatus = lstStatus;
}
// Property accessors
public Long getLstId() {
return this.lstId;
}
public void setLstId(Long lstId) {
this.lstId = lstId;
}
public CstCustomer getCstCustomer() {
return this.cstCustomer;
}
public void setCstCustomer(CstCustomer cstCustomer) {
this.cstCustomer = cstCustomer;
}
public String getLstCustManagerName() {
return this.lstCustManagerName;
}
public void setLstCustManagerName(String lstCustManagerName) {
this.lstCustManagerName = lstCustManagerName;
}
public Date getLstLastOrderDate() {
return lstLastOrderDate;
}
public void setLstLastOrderDate(Date lstLastOrderDate) {
this.lstLastOrderDate = lstLastOrderDate;
}
public Date getLstLostDate() {
return lstLostDate;
}
public void setLstLostDate(Date lstLostDate) {
this.lstLostDate = lstLostDate;
}
public String getLstDelay() {
return this.lstDelay;
}
public void setLstDelay(String lstDelay) {
this.lstDelay = lstDelay;
}
public String getLstReason() {
return this.lstReason;
}
public void setLstReason(String lstReason) {
this.lstReason = lstReason;
}
public String getLstStatus() {
return this.lstStatus;
}
public void setLstStatus(String lstStatus) {
this.lstStatus = lstStatus;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -