Browse Source

代码修改

LAPTOP-KB9HII50\70708 1 year ago
parent
commit
a58abf7a27

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

@ -25,7 +25,7 @@ public class ServiceItemPlanDO extends UuidIdentityEntityWithCreateTime {
    private String planDetailId;//康复计划明细id
    private String name;//服务项名称
    private String relationCode;//关联业务id
    private String relationType;//关联业务类型 1电话/短信关怀 2康复咨询 3康复咨询 4上门服务 5康复指导 6康复随访 7康复复诊
    private String relationType;//关联业务类型 1电话/短信关怀 2康复咨询 3健康监测 4上门服务 5康复指导 6康复随访 7康复复诊
    private String content;//服务完成笔记
    private String appendixs;//附件

+ 47 - 0
common/common-entity/src/main/java/com/yihu/jw/entity/specialist/rehabilitation/RehabilitationDetailDO.java

@ -77,6 +77,12 @@ public class RehabilitationDetailDO extends UuidIdentityEntity implements Serial
    private String completeTime;//上次完成时间
    private String planTime;//计划时间
    private Integer signCount;//监测次数
    private Integer signType;//体征类型 1血糖 2血压
    private String value1;
    private String value2;
    private String value3;
    @Column(name = "reservation_type")
    public Integer getReservationType() {
        return reservationType;
@ -371,4 +377,45 @@ public class RehabilitationDetailDO extends UuidIdentityEntity implements Serial
    public void setName(String name) {
        this.name = name;
    }
    @Transient
    public Integer getSignCount() {
        return signCount;
    }
    public void setSignCount(Integer signCount) {
        this.signCount = signCount;
    }
    @Transient
    public Integer getSignType() {
        return signType;
    }
    public void setSignType(Integer signType) {
        this.signType = signType;
    }
    @Transient
    public String getValue1() {
        return value1;
    }
    public void setValue1(String value1) {
        this.value1 = value1;
    }
    @Transient
    public String getValue2() {
        return value2;
    }
    public void setValue2(String value2) {
        this.value2 = value2;
    }
    @Transient
    public String getValue3() {
        return value3;
    }
    public void setValue3(String value3) {
        this.value3 = value3;
    }
}