cstactivity.java
来自「通过这个系统完成对客户基本信息、联系人信息、交往信息、客户服务信息的充分共享和规」· Java 代码 · 共 87 行
JAVA
87 行
package com.t53.crm4.common.entity;
import java.sql.Timestamp;
/**
* CstActivity generated by MyEclipse Persistence Tools
*/
public class CstActivity implements java.io.Serializable {
// Fields
private Long atvId;
private CstCustomer cstCustomer = new CstCustomer();
private String atvCustName;
private Timestamp atvDate;
private String atvPlace;
private String atvTitle;
private String atvDesc;
// Constructors
/** default constructor */
public CstActivity() {
}
// Property accessors
public Long getAtvId() {
return this.atvId;
}
public void setAtvId(Long atvId) {
this.atvId = atvId;
}
public CstCustomer getCstCustomer() {
return this.cstCustomer;
}
public void setCstCustomer(CstCustomer cstCustomer) {
this.cstCustomer = cstCustomer;
}
public String getAtvCustName() {
return this.atvCustName;
}
public void setAtvCustName(String atvCustName) {
this.atvCustName = atvCustName;
}
public Timestamp getAtvDate() {
return atvDate;
}
public void setAtvDate(Timestamp 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 + =
减小字号Ctrl + -
显示快捷键?