|
@ -28,6 +28,78 @@ public class BaseBannerDoctorDO extends UuidIdentityEntityWithOperator {
|
|
|
*医生名称
|
|
|
*/
|
|
|
private String doctorName;
|
|
|
/**
|
|
|
*患者id
|
|
|
*/
|
|
|
private String patientId;
|
|
|
/**
|
|
|
*患者名称
|
|
|
*/
|
|
|
private String patientName;
|
|
|
/**
|
|
|
*业务id
|
|
|
*/
|
|
|
private String relationCode;
|
|
|
/**
|
|
|
*业务名称
|
|
|
*/
|
|
|
private String receiverName;
|
|
|
/**
|
|
|
*内容
|
|
|
*/
|
|
|
private String content;
|
|
|
/**
|
|
|
*给医生送锦旗/评价送锦旗
|
|
|
*/
|
|
|
private Integer relationType;
|
|
|
|
|
|
public Integer getRelationType() {
|
|
|
return relationType;
|
|
|
}
|
|
|
|
|
|
public void setRelationType(Integer relationType) {
|
|
|
this.relationType = relationType;
|
|
|
}
|
|
|
|
|
|
public String getContent() {
|
|
|
return content;
|
|
|
}
|
|
|
|
|
|
public void setContent(String content) {
|
|
|
this.content = content;
|
|
|
}
|
|
|
|
|
|
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;
|