|
@ -15,26 +15,61 @@ import java.util.Date;
|
|
|
@Table(name = "wlyy_specialist_patient_relation")
|
|
|
public class SpecialistPatientRelationDO extends IdEntityWithOperation implements Serializable {
|
|
|
|
|
|
@Column(name = "saas_id")
|
|
|
private String saasId;
|
|
|
|
|
|
@Column(name = "discharge_record")
|
|
|
private String dischargeRecord;//最新出院记录
|
|
|
|
|
|
@Column(name = "doctor")
|
|
|
private String doctor;//专科医生
|
|
|
|
|
|
@Column(name = "doctor_name")
|
|
|
private String doctorName;//专科医生姓名
|
|
|
|
|
|
@Column(name = "patient")
|
|
|
private String patient;// 居民(患者)
|
|
|
|
|
|
@Column(name = "patient_name")
|
|
|
private String patientName;//居民(患者)姓名
|
|
|
|
|
|
@Column(name = "health_assistant")
|
|
|
private String healthAssistant;//计管师
|
|
|
|
|
|
@Column(name = "health_assistant_name")
|
|
|
private String healthAssistantName;//计管师
|
|
|
|
|
|
@Column(name = "status")
|
|
|
private String status;//1.已经分配,0,待分配
|
|
|
|
|
|
@Column(name = "pk_code")
|
|
|
private String pkCode; //服务包code
|
|
|
|
|
|
@Column(name = "sign_code")
|
|
|
private String signCode;//签约code
|
|
|
|
|
|
@Column(name = "sign_doctor")
|
|
|
private String signDoctor;//签约医生
|
|
|
|
|
|
@Column(name = "sign_doctor_name")
|
|
|
private String signDoctorName;//签约医生
|
|
|
|
|
|
@Column(name = "health_doctor")
|
|
|
private String healthDoctor;//健康管理师
|
|
|
|
|
|
@Column(name = "health_doctor_name")
|
|
|
private String healthDoctorName;//健康管理师姓名
|
|
|
|
|
|
@Column(name = "sign_year")
|
|
|
private String signYear;//签约年度
|
|
|
|
|
|
@Column(name = "team_code")
|
|
|
private Integer teamCode;//签约团队
|
|
|
|
|
|
@Column(name = "sign_date")
|
|
|
private Date signDate;//签约日期
|
|
|
|
|
|
@Column(name = "saas_id")
|
|
|
|
|
|
public String getSaasId() {
|
|
|
return saasId;
|
|
|
}
|
|
@ -43,7 +78,7 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.saasId = saasId;
|
|
|
}
|
|
|
|
|
|
@Column(name = "discharge_record")
|
|
|
|
|
|
public String getDischargeRecord() {
|
|
|
return dischargeRecord;
|
|
|
}
|
|
@ -52,7 +87,7 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.dischargeRecord = dischargeRecord;
|
|
|
}
|
|
|
|
|
|
@Column(name = "doctor")
|
|
|
|
|
|
public String getDoctor() {
|
|
|
return doctor;
|
|
|
}
|
|
@ -61,7 +96,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.doctor = doctor;
|
|
|
}
|
|
|
|
|
|
@Column(name = "doctor_name")
|
|
|
public String getDoctorName() {
|
|
|
return doctorName;
|
|
|
}
|
|
@ -70,7 +104,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.doctorName = doctorName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "patient")
|
|
|
public String getPatient() {
|
|
|
return patient;
|
|
|
}
|
|
@ -79,7 +112,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.patient = patient;
|
|
|
}
|
|
|
|
|
|
@Column(name = "patient_name")
|
|
|
public String getPatientName() {
|
|
|
return patientName;
|
|
|
}
|
|
@ -88,7 +120,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.patientName = patientName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "status")
|
|
|
public String getStatus() {
|
|
|
return status;
|
|
|
}
|
|
@ -97,7 +128,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
@Column(name = "sign_code")
|
|
|
public String getSignCode() {
|
|
|
return signCode;
|
|
|
}
|
|
@ -106,7 +136,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.signCode = signCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "sign_doctor")
|
|
|
public String getSignDoctor() {
|
|
|
return signDoctor;
|
|
|
}
|
|
@ -115,7 +144,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.signDoctor = signDoctor;
|
|
|
}
|
|
|
|
|
|
@Column(name = "sign_doctor_name")
|
|
|
public String getSignDoctorName() {
|
|
|
return signDoctorName;
|
|
|
}
|
|
@ -124,7 +152,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.signDoctorName = signDoctorName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "health_doctor")
|
|
|
public String getHealthDoctor() {
|
|
|
return healthDoctor;
|
|
|
}
|
|
@ -133,7 +160,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.healthDoctor = healthDoctor;
|
|
|
}
|
|
|
|
|
|
@Column(name = "health_doctor_name")
|
|
|
public String getHealthDoctorName() {
|
|
|
return healthDoctorName;
|
|
|
}
|
|
@ -142,7 +168,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.healthDoctorName = healthDoctorName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "sign_year")
|
|
|
public String getSignYear() {
|
|
|
return signYear;
|
|
|
}
|
|
@ -151,9 +176,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.signYear = signYear;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "sign_date")
|
|
|
public Date getSignDate() {
|
|
|
return signDate;
|
|
|
}
|
|
@ -162,7 +184,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.signDate = signDate;
|
|
|
}
|
|
|
|
|
|
@Column(name = "team_code")
|
|
|
public Integer getTeamCode() {
|
|
|
return teamCode;
|
|
|
}
|
|
@ -171,7 +192,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.teamCode = teamCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "health_assistant")
|
|
|
public String getHealthAssistant() {
|
|
|
return healthAssistant;
|
|
|
}
|
|
@ -180,7 +200,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.healthAssistant = healthAssistant;
|
|
|
}
|
|
|
|
|
|
@Column(name = "health_assistant_name")
|
|
|
public String getHealthAssistantName() {
|
|
|
return healthAssistantName;
|
|
|
}
|
|
@ -189,7 +208,6 @@ public class SpecialistPatientRelationDO extends IdEntityWithOperation implement
|
|
|
this.healthAssistantName = healthAssistantName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "pk_code")
|
|
|
public String getPkCode() {
|
|
|
return pkCode;
|
|
|
}
|