📄 planentity.java
字号:
package crm.entity.sal;
import java.util.Date;
/**
* PlanEntity(实体类) 对应 客户开发计划表(sal_plan)
*/
public class PlanEntity implements java.io.Serializable {
private static final long serialVersionUID = 4996512966949193207L;
private Long plaId; //开发计划编号
private ChanceEntity salChance; //销售机会实体对象 在多的一方
private Date plaDate; //开发日期
private String plaTodo; //计划项
private String plaResult; //开发结果
// Constructors
/** default constructor */
public PlanEntity() {
}
/** minimal constructor */
public PlanEntity(ChanceEntity salChance, Date plaDate, String plaTodo) {
this.salChance = salChance;
this.plaDate = plaDate;
this.plaTodo = plaTodo;
}
/** full constructor */
public PlanEntity(ChanceEntity salChance, Date plaDate, String plaTodo,
String plaResult) {
this.salChance = salChance;
this.plaDate = plaDate;
this.plaTodo = plaTodo;
this.plaResult = plaResult;
}
// Property accessors
public Long getPlaId() {
return this.plaId;
}
public void setPlaId(Long plaId) {
this.plaId = plaId;
}
public ChanceEntity getSalChance() {
return this.salChance;
}
public void setSalChance(ChanceEntity salChance) {
this.salChance = salChance;
}
public Date getPlaDate() {
return this.plaDate;
}
public void setPlaDate(Date plaDate) {
this.plaDate = plaDate;
}
public String getPlaTodo() {
return this.plaTodo;
}
public void setPlaTodo(String plaTodo) {
this.plaTodo = plaTodo;
}
public String getPlaResult() {
return this.plaResult;
}
public void setPlaResult(String plaResult) {
this.plaResult = plaResult;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -