|
@ -6,6 +6,7 @@ import com.yihu.jw.entity.UuidIdentityEntityWithOperatorAES;
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import javax.persistence.Transient;
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
/**
|
|
@ -36,20 +37,27 @@ public class RehabilitationPlanTemplateDO extends UuidIdentityEntityWithOperator
|
|
|
/**
|
|
|
* 新增字段
|
|
|
*/
|
|
|
@Column(name = "disease_id")
|
|
|
// @Column(name = "disease_id")
|
|
|
private String diseaseId;//病种code
|
|
|
|
|
|
@Column(name = "disease_name")
|
|
|
// @Column(name = "disease_name")
|
|
|
private String diseaseName;
|
|
|
|
|
|
@Column(name = "status")
|
|
|
private String status;
|
|
|
|
|
|
@Column(name = "type")
|
|
|
private String type;
|
|
|
private String type;//1表示模板,2表示计划
|
|
|
@Column(name = "plan_doctor")
|
|
|
private String planDoctor;//康复计划负责人
|
|
|
@Column(name = "plan_doctor_name")
|
|
|
private String planDoctorName;//康复计划负责人姓名
|
|
|
//---------------------------------
|
|
|
|
|
|
|
|
|
//非数据库字段
|
|
|
private Integer isFamily;//是否关联三师共管专病(1是0否)
|
|
|
|
|
|
public String getType() {
|
|
|
return type;
|
|
|
}
|
|
@ -72,6 +80,7 @@ public class RehabilitationPlanTemplateDO extends UuidIdentityEntityWithOperator
|
|
|
}
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
public String getDiseaseId() {
|
|
|
return diseaseId;
|
|
|
}
|
|
@ -80,6 +89,7 @@ public class RehabilitationPlanTemplateDO extends UuidIdentityEntityWithOperator
|
|
|
this.diseaseId = diseaseId;
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
|
public String getDiseaseName() {
|
|
|
return diseaseName;
|
|
|
}
|
|
@ -136,4 +146,31 @@ public class RehabilitationPlanTemplateDO extends UuidIdentityEntityWithOperator
|
|
|
public void setDel(Integer del) {
|
|
|
this.del = del;
|
|
|
}
|
|
|
|
|
|
@Column(name = "plan_doctor")
|
|
|
public String getPlanDoctor() {
|
|
|
return planDoctor;
|
|
|
}
|
|
|
|
|
|
public void setPlanDoctor(String planDoctor) {
|
|
|
this.planDoctor = planDoctor;
|
|
|
}
|
|
|
|
|
|
@Column(name = "plan_doctor_name")
|
|
|
public String getPlanDoctorName() {
|
|
|
return planDoctorName;
|
|
|
}
|
|
|
|
|
|
public void setPlanDoctorName(String planDoctorName) {
|
|
|
this.planDoctorName = planDoctorName;
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
|
public Integer getIsFamily() {
|
|
|
return isFamily;
|
|
|
}
|
|
|
|
|
|
public void setIsFamily(Integer isFamily) {
|
|
|
this.isFamily = isFamily;
|
|
|
}
|
|
|
}
|