📄 activityentity.java
字号:
package crm.entity.cst;
import java.util.Date;
/**
* ActivityEntity(实体类) 对应 交往记录表(cst_activity)
*/
public class ActivityEntity implements java.io.Serializable {
private static final long serialVersionUID = -2293967942814708497L;
private Long atvId; //编号
private CustomerEntity cstCustomer; //客户实体对象 在多的一方
private String atvCustName; //客户姓名
private Date atvDate; //活动日期
private String atvPlace; //地点
private String atvTitle; //概要
private String atvDesc; //详细信息 差一列。备注
// Constructors
/** default constructor */
public ActivityEntity() {
}
/** minimal constructor */
public ActivityEntity(Date atvDate, String atvPlace, String atvTitle) {
this.atvDate = atvDate;
this.atvPlace = atvPlace;
this.atvTitle = atvTitle;
}
/** full constructor */
public ActivityEntity(CustomerEntity cstCustomer, String atvCustName,
Date atvDate, String atvPlace, String atvTitle, String atvDesc) {
this.cstCustomer = cstCustomer;
this.atvCustName = atvCustName;
this.atvDate = atvDate;
this.atvPlace = atvPlace;
this.atvTitle = atvTitle;
this.atvDesc = atvDesc;
}
// Property accessors
public Long getAtvId() {
return this.atvId;
}
public void setAtvId(Long atvId) {
this.atvId = atvId;
}
public CustomerEntity getCstCustomer() {
return this.cstCustomer;
}
public void setCstCustomer(CustomerEntity cstCustomer) {
this.cstCustomer = cstCustomer;
}
public String getAtvCustName() {
return this.atvCustName;
}
public void setAtvCustName(String atvCustName) {
this.atvCustName = atvCustName;
}
public Date getAtvDate() {
return this.atvDate;
}
public void setAtvDate(Date atvDate) {
this.atvDate = atvDate;
}
public String getAtvPlace() {
return this.atvPlace;
}
public void setAtvPlace(String atvPlace) {
this.atvPlace = atvPlace;
}
public String getAtvTitle() {
return this.atvTitle;
}
public void setAtvTitle(String atvTitle) {
this.atvTitle = atvTitle;
}
public String getAtvDesc() {
return this.atvDesc;
}
public void setAtvDesc(String atvDesc) {
this.atvDesc = atvDesc;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -