|
@@ -5,6 +5,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.time.LocalDate;
|
|
import java.time.LocalDate;
|
|
|
import java.time.LocalDateTime;
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
@@ -90,6 +91,132 @@ public class ElderlyRiskDisclosureStatementRespVO {
|
|
|
@Schema(description = "机构id", example = "1")
|
|
@Schema(description = "机构id", example = "1")
|
|
|
private Long tenantId;
|
|
private Long tenantId;
|
|
|
|
|
|
|
|
|
|
+ @Schema(description = "防噎食评估id")
|
|
|
|
|
+ private Long asphyxiationByChokingId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防噎食评估得分")
|
|
|
|
|
+ private BigDecimal asphyxiationByChokingAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防噎食风险程度")
|
|
|
|
|
+ private String asphyxiationByChokingRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防压疮评估id")
|
|
|
|
|
+ private Long pressureSoresId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防压疮评估得分")
|
|
|
|
|
+ private BigDecimal pressureSoresAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防压疮风险程度")
|
|
|
|
|
+ private String pressureSoresRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防跌倒评估id")
|
|
|
|
|
+ private Long fallDownId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防跌倒评估得分")
|
|
|
|
|
+ private BigDecimal fallDownAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防跌倒风险程度")
|
|
|
|
|
+ private String fallDownRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防坠床评估id")
|
|
|
|
|
+ private Long fallPreventionMeasuresId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防坠床评估得分")
|
|
|
|
|
+ private BigDecimal fallPreventionMeasuresAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防坠床风险程度")
|
|
|
|
|
+ private String fallPreventionMeasuresRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防烫伤评估id")
|
|
|
|
|
+ private Long empyrosisId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防烫伤评估得分")
|
|
|
|
|
+ private BigDecimal empyrosisAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防烫伤风险程度")
|
|
|
|
|
+ private String empyrosisRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防走失评估id")
|
|
|
|
|
+ private Long wanderAwayId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防走失评估得分")
|
|
|
|
|
+ private BigDecimal wanderAwayAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防走失风险程度")
|
|
|
|
|
+ private String wanderAwayRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "自杀风险评估id")
|
|
|
|
|
+ private Long suicideRiskId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "自杀风险评估得分")
|
|
|
|
|
+ private BigDecimal suicideRiskAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "自杀风险程度")
|
|
|
|
|
+ private String suicideRiskRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "攻击风险评估id")
|
|
|
|
|
+ private Long attackRiskId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "攻击风险评估得分")
|
|
|
|
|
+ private BigDecimal attackRiskAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "攻击风险程度")
|
|
|
|
|
+ private String attackRiskRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防文娱活动意外id")
|
|
|
|
|
+ private Long antiEntertainmentId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防文娱活动意外评估得分")
|
|
|
|
|
+ private BigDecimal antiEntertainmentAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "防文娱活动意外风险程度")
|
|
|
|
|
+ private String antiEntertainmentRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "简易精神状态量表id")
|
|
|
|
|
+ private Long simpleMentalStateId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "简易精神状态量表得分")
|
|
|
|
|
+ private BigDecimal simpleMentalStateAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "简易精神状态风险程度")
|
|
|
|
|
+ private String simpleMentalStateRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "感知觉与沟通评估id")
|
|
|
|
|
+ private Long perceptionCommunicationId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "感知觉与沟通评估得分")
|
|
|
|
|
+ private BigDecimal perceptionCommunicationAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "感知觉与沟通风险程度")
|
|
|
|
|
+ private String perceptionCommunicationRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "平衡能力评估id")
|
|
|
|
|
+ private Long equilibriumId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "平衡能力评估得分")
|
|
|
|
|
+ private BigDecimal equilibriumAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "平衡能力风险程度")
|
|
|
|
|
+ private String equilibriumRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "日常生活能力评估id")
|
|
|
|
|
+ private Long dailyLifeId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "日常生活能力评估得分")
|
|
|
|
|
+ private BigDecimal dailyLifeAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "日常生活能力风险程度")
|
|
|
|
|
+ private String dailyLifeRiskLevel;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "营养评估表id")
|
|
|
|
|
+ private Long nutritionalRiskId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "营养评估得分")
|
|
|
|
|
+ private BigDecimal nutritionalRiskAssessScore;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "营养风险程度")
|
|
|
|
|
+ private String nutritionalRiskRiskLevel;
|
|
|
|
|
+
|
|
|
@Schema(description = "创建时间")
|
|
@Schema(description = "创建时间")
|
|
|
private LocalDateTime createTime;
|
|
private LocalDateTime createTime;
|
|
|
|
|
|
|
@@ -102,4 +229,3 @@ public class ElderlyRiskDisclosureStatementRespVO {
|
|
|
@Schema(description = "更新人")
|
|
@Schema(description = "更新人")
|
|
|
private String updater;
|
|
private String updater;
|
|
|
}
|
|
}
|
|
|
-
|
|
|