Browse Source

Merge branch 'develop' into staticKonwledge20210104

gaodm 4 years atrás
parent
commit
79d08b3dd0

+ 4 - 0
src/main/java/com/diagbot/dto/LisDetailDTO.java

@@ -43,4 +43,8 @@ public class LisDetailDTO {
      * 非数值类型参考值
      */
     private String referenceValue;
+    /**
+     * 参考范围:0-范围内,1-范围外
+     */
+    private Integer range;
 }

+ 5 - 0
src/main/java/com/diagbot/vo/PushJoinVO.java

@@ -10,6 +10,7 @@ import lombok.Setter;
 import javax.validation.constraints.NotNull;
 import java.util.Date;
 import java.util.List;
+import java.util.Map;
 
 /**
  * @Description:
@@ -180,6 +181,10 @@ public class PushJoinVO {
      * 选中手术
      */
     private Item operationName;
+    /**
+     * 其他指标
+     */
+    private Map<String, String> otherIndex;
 
     //创建时间
     @ApiModelProperty(hidden = true)

+ 5 - 0
src/main/java/com/diagbot/vo/SearchData.java

@@ -9,6 +9,7 @@ import lombok.Setter;
 
 import java.util.ArrayList;
 import java.util.List;
+import java.util.Map;
 
 /**
  * @Description:
@@ -171,4 +172,8 @@ public class SearchData extends HospitalBaseVO {
      * 选中手术
      */
     private Item operationName;
+    /**
+     * 其他指标
+     */
+    private Map<String, String> otherIndex;
 }