|
@ -30,6 +30,7 @@ public class CapacityAssessmentRecordDO extends UuidIdentityEntityWithCreateTime
|
|
|
* 性别,1男,2女
|
|
|
*/
|
|
|
private Integer sex;
|
|
|
private String sexName;
|
|
|
|
|
|
/**
|
|
|
* 手机号
|
|
@ -60,26 +61,31 @@ public class CapacityAssessmentRecordDO extends UuidIdentityEntityWithCreateTime
|
|
|
* 能力完好(0级) 轻度受损(1级) 中度受损(2级) 重度受损(3级)
|
|
|
*/
|
|
|
private Integer livingAbility;
|
|
|
private String livingAbilityName;
|
|
|
/**
|
|
|
* 认知能力
|
|
|
* 能力完好(0级) 轻度受损(1级) 中度受损(2级) 重度受损(3级)
|
|
|
*/
|
|
|
private Integer cognitiveAbility;
|
|
|
private String cognitiveAbilityName;
|
|
|
/**
|
|
|
*精神状态与社会交流能力
|
|
|
* 能力完好(0级) 轻度受损(1级) 中度受损(2级) 重度受损(3级)
|
|
|
*/
|
|
|
private Integer socialAbility;
|
|
|
private String socialAbilityName;
|
|
|
/**
|
|
|
* 能力总体评价
|
|
|
* 能力完好(0级) 轻度失能(1级) 中度失能(2级) 重度失能(3级)
|
|
|
*/
|
|
|
private Integer comprehensiveAbility;
|
|
|
private String comprehensiveAbilityName;
|
|
|
/**
|
|
|
* 等级结论
|
|
|
* 能力完好(0级) 轻度失能(1级) 中度失能(2级) 重度失能(3级)
|
|
|
*/
|
|
|
private Integer levelConclusion;
|
|
|
private String levelConclusionName;
|
|
|
private String doctor;
|
|
|
private String doctorName;
|
|
|
private String orgCode;
|
|
@ -88,6 +94,7 @@ public class CapacityAssessmentRecordDO extends UuidIdentityEntityWithCreateTime
|
|
|
* 认可结果(0未认可,1已认可,2不认可)
|
|
|
*/
|
|
|
private Integer status;
|
|
|
private String statusName;
|
|
|
/**
|
|
|
* 签字结果图片url
|
|
|
*/
|
|
@ -100,6 +107,7 @@ public class CapacityAssessmentRecordDO extends UuidIdentityEntityWithCreateTime
|
|
|
* 是否分配服务包(0未分配,1已分配)
|
|
|
*/
|
|
|
private Integer servicePackageStatus;
|
|
|
private String servicePackageStatusName;
|
|
|
|
|
|
/**
|
|
|
* 年纪
|
|
@ -310,4 +318,68 @@ public class CapacityAssessmentRecordDO extends UuidIdentityEntityWithCreateTime
|
|
|
public void setPhoto(String photo) {
|
|
|
this.photo = photo;
|
|
|
}
|
|
|
@Transient
|
|
|
public String getSexName() {
|
|
|
return sexName;
|
|
|
}
|
|
|
|
|
|
public void setSexName(String sexName) {
|
|
|
this.sexName = sexName;
|
|
|
}
|
|
|
@Transient
|
|
|
public String getLivingAbilityName() {
|
|
|
return livingAbilityName;
|
|
|
}
|
|
|
|
|
|
public void setLivingAbilityName(String livingAbilityName) {
|
|
|
this.livingAbilityName = livingAbilityName;
|
|
|
}
|
|
|
@Transient
|
|
|
public String getCognitiveAbilityName() {
|
|
|
return cognitiveAbilityName;
|
|
|
}
|
|
|
|
|
|
public void setCognitiveAbilityName(String cognitiveAbilityName) {
|
|
|
this.cognitiveAbilityName = cognitiveAbilityName;
|
|
|
}
|
|
|
@Transient
|
|
|
public String getSocialAbilityName() {
|
|
|
return socialAbilityName;
|
|
|
}
|
|
|
|
|
|
public void setSocialAbilityName(String socialAbilityName) {
|
|
|
this.socialAbilityName = socialAbilityName;
|
|
|
}
|
|
|
@Transient
|
|
|
public String getComprehensiveAbilityName() {
|
|
|
return comprehensiveAbilityName;
|
|
|
}
|
|
|
|
|
|
public void setComprehensiveAbilityName(String comprehensiveAbilityName) {
|
|
|
this.comprehensiveAbilityName = comprehensiveAbilityName;
|
|
|
}
|
|
|
@Transient
|
|
|
public String getLevelConclusionName() {
|
|
|
return levelConclusionName;
|
|
|
}
|
|
|
|
|
|
public void setLevelConclusionName(String levelConclusionName) {
|
|
|
this.levelConclusionName = levelConclusionName;
|
|
|
}
|
|
|
@Transient
|
|
|
public String getStatusName() {
|
|
|
return statusName;
|
|
|
}
|
|
|
|
|
|
public void setStatusName(String statusName) {
|
|
|
this.statusName = statusName;
|
|
|
}
|
|
|
@Transient
|
|
|
public String getServicePackageStatusName() {
|
|
|
return servicePackageStatusName;
|
|
|
}
|
|
|
|
|
|
public void setServicePackageStatusName(String servicePackageStatusName) {
|
|
|
this.servicePackageStatusName = servicePackageStatusName;
|
|
|
}
|
|
|
}
|