|
@ -2,11 +2,8 @@ package com.yihu.jw.entity.specialist.rehabilitation;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntity;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
import com.yihu.jw.entity.util.StringFStringEncryptConverter;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Convert;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.io.Serializable;
|
|
@ -62,6 +59,9 @@ public class PatientRehabilitationPlanDO extends UuidIdentityEntity implements S
|
|
|
|
|
|
private String healthStatusCode;//健康情况
|
|
|
private String isVerify;
|
|
|
|
|
|
private Long adminTeamCode;//家签行政团队Id
|
|
|
|
|
|
@Column(name = "is_verify")
|
|
|
public String getIsVerify() {
|
|
|
return isVerify;
|
|
@ -284,4 +284,13 @@ public class PatientRehabilitationPlanDO extends UuidIdentityEntity implements S
|
|
|
public void setUpdateUserName(String updateUserName) {
|
|
|
this.updateUserName = updateUserName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "admin_team_code")
|
|
|
public Long getAdminTeamCode() {
|
|
|
return adminTeamCode;
|
|
|
}
|
|
|
|
|
|
public void setAdminTeamCode(Long adminTeamCode) {
|
|
|
this.adminTeamCode = adminTeamCode;
|
|
|
}
|
|
|
}
|