yeshijie 4 vuotta sitten
vanhempi
commit
d34699c3c0

+ 11 - 1
common/common-entity/src/main/java/com/yihu/jw/entity/specialist/rehabilitation/PatientRehabilitationPlanDO.java

@ -2,7 +2,6 @@ package com.yihu.jw.entity.specialist.rehabilitation;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
import org.springframework.data.annotation.CreatedDate;
import javax.persistence.Column;
import javax.persistence.Entity;
@ -52,6 +51,8 @@ public class PatientRehabilitationPlanDO extends UuidIdentityEntityWithOperator
    @Column(name = "team_code")
    private Integer teamCode;//专科医生签约团队
    private String healthStatusCode;//健康情况
    @Column(name = "saas_id")
    public String getSaasId() {
        return saasId;
@ -203,4 +204,13 @@ public class PatientRehabilitationPlanDO extends UuidIdentityEntityWithOperator
    public void setTeamCode(Integer teamCode) {
        this.teamCode = teamCode;
    }
    @Column(name = "health_status_code")
    public String getHealthStatusCode() {
        return healthStatusCode;
    }
    public void setHealthStatusCode(String healthStatusCode) {
        this.healthStatusCode = healthStatusCode;
    }
}