|
@ -28,6 +28,54 @@ public class BaseBannerDoctorDO extends UuidIdentityEntityWithOperator {
|
|
|
*医生名称
|
|
|
*/
|
|
|
private String doctorName;
|
|
|
/**
|
|
|
*患者id
|
|
|
*/
|
|
|
private String patientId;
|
|
|
/**
|
|
|
*患者名称
|
|
|
*/
|
|
|
private String patientName;
|
|
|
/**
|
|
|
*业务id
|
|
|
*/
|
|
|
private String relationCode;
|
|
|
/**
|
|
|
*业务名称
|
|
|
*/
|
|
|
private String receiverName;
|
|
|
|
|
|
public String getPatientId() {
|
|
|
return patientId;
|
|
|
}
|
|
|
|
|
|
public void setPatientId(String patientId) {
|
|
|
this.patientId = patientId;
|
|
|
}
|
|
|
|
|
|
public String getPatientName() {
|
|
|
return patientName;
|
|
|
}
|
|
|
|
|
|
public void setPatientName(String patientName) {
|
|
|
this.patientName = patientName;
|
|
|
}
|
|
|
|
|
|
public String getRelationCode() {
|
|
|
return relationCode;
|
|
|
}
|
|
|
|
|
|
public void setRelationCode(String relationCode) {
|
|
|
this.relationCode = relationCode;
|
|
|
}
|
|
|
|
|
|
public String getReceiverName() {
|
|
|
return receiverName;
|
|
|
}
|
|
|
|
|
|
public void setReceiverName(String receiverName) {
|
|
|
this.receiverName = receiverName;
|
|
|
}
|
|
|
|
|
|
public String getBannerId() {
|
|
|
return bannerId;
|