LAPTOP-KB9HII50\70708 1 年間 前
コミット
d2f527d0ec

+ 16 - 7
common/common-entity/src/main/java/com/yihu/jw/entity/base/servicePackage/ServiceItemPlanDO.java

@ -1,7 +1,6 @@
package com.yihu.jw.entity.base.servicePackage;
import com.yihu.jw.entity.UuidIdentityEntityWithCreateTime;
import com.yihu.jw.entity.followup.Followup;
import javax.persistence.Column;
import javax.persistence.Entity;
@ -27,9 +26,10 @@ public class ServiceItemPlanDO extends UuidIdentityEntityWithCreateTime {
    private String name;//服务项名称
    private String relationCode;//关联业务id
    private String relationType;//关联业务类型 1电话/短信关怀 2康复咨询 3康复咨询 4上门服务 5康复指导 6康复随访 7康复复诊
    private String content;//服务完成笔记
    private String appendixs;//附件
    private String guidanceMessage;//指导留言
    private Followup followup;//随访
    @Column(name = "patient")
    public String getPatient() {
@ -131,12 +131,21 @@ public class ServiceItemPlanDO extends UuidIdentityEntityWithCreateTime {
        this.guidanceMessage = guidanceMessage;
    }
    @Transient
    public Followup getFollowup() {
        return followup;
    @Column(name = "content")
    public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
    @Column(name = "appendixs")
    public String getAppendixs() {
        return appendixs;
    }
    public void setFollowup(Followup followup) {
        this.followup = followup;
    public void setAppendixs(String appendixs) {
        this.appendixs = appendixs;
    }
}