📄 cstlostreptform.java
字号:
package com.accp.struts.form;
import java.util.Date;
public class CstLostReptForm {
// 客户流失
private Long lstId;
private String custName;
private String lstCustManagerName;
private Date lstLostDate;
private String lstReason;
public Long getLstId() {
return lstId;
}
public void setLstId(Long lstId) {
this.lstId = lstId;
}
public String getCustName() {
return custName;
}
public void setCustName(String custName) {
this.custName = custName;
}
public String getLstCustManagerName() {
return lstCustManagerName;
}
public void setLstCustManagerName(String lstCustManagerName) {
this.lstCustManagerName = lstCustManagerName;
}
public Date getLstLostDate() {
return lstLostDate;
}
public void setLstLostDate(Date lstLostDate) {
this.lstLostDate = lstLostDate;
}
public String getLstReason() {
return lstReason;
}
public void setLstReason(String lstReason) {
this.lstReason = lstReason;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -