|
|
@@ -0,0 +1,99 @@
|
|
|
+package com.nb.web.service.bus.service.dto;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.alibaba.excel.converters.date.DateDateConverter;
|
|
|
+import lombok.Data;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @ClassName : CombineEvalResultExcelDTO
|
|
|
+ * @Description :
|
|
|
+ * @Author : LF
|
|
|
+ * @Date: 2023年08月18日
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class CombineEvalResultExcelDTO implements Serializable {
|
|
|
+ @ExcelProperty(value = "患者姓名",order = 1)
|
|
|
+ private String patientName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "住院号",order = 2)
|
|
|
+ private String patientCode;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "手术名称",order = 3)
|
|
|
+ private String surgeryName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "评价时间",order = 4,converter = DateDateConverter.class)
|
|
|
+ private Date evalTime;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "评价人",order = 5)
|
|
|
+ private String evaluator;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "静息疼痛",order = 6)
|
|
|
+ private Integer statics;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "活动疼痛",order = 7)
|
|
|
+ private Integer activity;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "镇静评分",order = 8)
|
|
|
+ private Integer calm;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "左上肢",order = 9)
|
|
|
+ private Integer leftArm;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "左下肢",order = 10)
|
|
|
+ private Integer leftLeg;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "右上肢",order = 11)
|
|
|
+ private Integer rightArm;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "右下肢",order = 12)
|
|
|
+ private Integer rightLeg;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "恶心呕吐",order = 13)
|
|
|
+ private Integer nauseaVomit;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "瘙痒",order = 14)
|
|
|
+ private Integer itch;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "眩晕",order = 15)
|
|
|
+ private Integer vertigo;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "咽喉疼痛",order = 16)
|
|
|
+ private Integer soreThroat;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "尿潴留",order = 17)
|
|
|
+ private Integer uroschesis;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "呼吸抑制",order = 18)
|
|
|
+ private Integer breathDepression;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "声音嘶哑",order = 19)
|
|
|
+ private Integer hoarseness;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "认知障碍",order = 20)
|
|
|
+ private Integer cognitionObstacle;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "满意度",order = 21)
|
|
|
+ private Integer satisfaction;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "收缩压",order = 22)
|
|
|
+ private BigDecimal shrinkPressure;
|
|
|
+
|
|
|
+
|
|
|
+ @ExcelProperty(value = "舒张压",order = 23)
|
|
|
+ private BigDecimal diastensPressure;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "心率",order = 24)
|
|
|
+ private BigDecimal heartRate;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "胎心",order = 25)
|
|
|
+ private BigDecimal fetalHeartRate;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "呼吸频率",order = 26)
|
|
|
+ private BigDecimal breathRate;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "血氧饱和度",order = 27)
|
|
|
+ private BigDecimal bloodOxygenSaturation;
|
|
|
+}
|