|
@@ -0,0 +1,43 @@
|
|
|
+package com.diagbot.dto;
|
|
|
+
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description:
|
|
|
+ * @Author:zhaops
|
|
|
+ * @time: 2021/2/24 13:39
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+public class ClassicCaseDetailDTO {
|
|
|
+ /**
|
|
|
+ * 提示概念id
|
|
|
+ */
|
|
|
+ private Long conceptId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提示明细标题
|
|
|
+ */
|
|
|
+ private String title;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提示明细内容
|
|
|
+ */
|
|
|
+ private String content;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 纯文本
|
|
|
+ */
|
|
|
+ private String text;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提示明细序号
|
|
|
+ */
|
|
|
+ private Integer orderNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 内容类型(多选):1-化验、辅检、手术和操作、诊断、药品静态信息,2-注意事项,3-临床路径,4-治疗方案,5-诊疗指南
|
|
|
+ */
|
|
|
+ private String contentType;
|
|
|
+}
|