浏览代码

Merge branch 'dev' of wangjun/wlyy2.0 into dev

wangzhinan 4 年之前
父节点
当前提交
1614d38d35

+ 72 - 0
common/common-entity/src/main/java/com/yihu/jw/entity/hospital/message/BaseBannerDoctorDO.java

@ -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;