|
@ -33,6 +33,8 @@ public class ServiceItemPlanDO extends UuidIdentityEntityWithCreateTime {
|
|
|
|
|
|
private String guidanceMessage;//指导留言
|
|
|
private String followupStatus;//随访状态 0取消 1已完成 2未开始 3进行中 4待审核
|
|
|
private String planDoctor;//计划负责人
|
|
|
private String planDoctorName;//计划负责人
|
|
|
|
|
|
@Column(name = "patient")
|
|
|
public String getPatient() {
|
|
@ -169,4 +171,22 @@ public class ServiceItemPlanDO extends UuidIdentityEntityWithCreateTime {
|
|
|
public void setReservationType(Integer reservationType) {
|
|
|
this.reservationType = reservationType;
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
|
public String getPlanDoctor() {
|
|
|
return planDoctor;
|
|
|
}
|
|
|
|
|
|
public void setPlanDoctor(String planDoctor) {
|
|
|
this.planDoctor = planDoctor;
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
|
public String getPlanDoctorName() {
|
|
|
return planDoctorName;
|
|
|
}
|
|
|
|
|
|
public void setPlanDoctorName(String planDoctorName) {
|
|
|
this.planDoctorName = planDoctorName;
|
|
|
}
|
|
|
}
|