Răsfoiți Sursa

获取质控样配置 小数处理调整

王苗苗 3 săptămâni în urmă
părinte
comite
6e86a1317f

+ 2 - 2
.idea/workspace.xml

@@ -5,8 +5,8 @@
   </component>
   <component name="ChangeListManager">
     <list default="true" id="494e7e12-0e43-41f1-b914-44d06666de04" name="Changes" comment="">
-      <change afterPath="$PROJECT_DIR$/src/main/java/com/robot/remote/smartrobotremote/controller/DataController.java" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/src/main/java/com/robot/remote/smartrobotremote/domain/ZQualityValue.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/robot/remote/smartrobotremote/domain/ZQualityValue.java" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -107,7 +107,7 @@
       <workItem from="1736944947909" duration="5000" />
       <workItem from="1736989247063" duration="600000" />
       <workItem from="1739515108280" duration="1054000" />
-      <workItem from="1741251749291" duration="13463000" />
+      <workItem from="1741251749291" duration="21551000" />
     </task>
     <servers />
   </component>

+ 9 - 9
src/main/java/com/robot/remote/smartrobotremote/domain/ZQualityValue.java

@@ -24,17 +24,17 @@ public class ZQualityValue
     private String assayItem;
 
     /** 质控值 */
-    private Long resultValue;
+    private Double resultValue;
 
     /** 有效结束时间 */
     @JsonFormat(pattern = "yyyy-MM-dd")
     private Date endTime;
 
     /** 下限值 */
-    private Long lowValue;
+    private Double lowValue;
 
     /** 上限值 */
-    private Long highValue;
+    private Double highValue;
 
     /** 有效开始时间 */
     @JsonFormat(pattern = "yyyy-MM-dd")
@@ -113,12 +113,12 @@ public class ZQualityValue
     {
         return assayItem;
     }
-    public void setResultValue(Long resultValue) 
+    public void setResultValue(Double resultValue)
     {
         this.resultValue = resultValue;
     }
 
-    public Long getResultValue() 
+    public Double getResultValue()
     {
         return resultValue;
     }
@@ -131,21 +131,21 @@ public class ZQualityValue
     {
         return endTime;
     }
-    public void setLowValue(Long lowValue) 
+    public void setLowValue(Double lowValue)
     {
         this.lowValue = lowValue;
     }
 
-    public Long getLowValue() 
+    public Double getLowValue()
     {
         return lowValue;
     }
-    public void setHighValue(Long highValue) 
+    public void setHighValue(Double highValue)
     {
         this.highValue = highValue;
     }
 
-    public Long getHighValue() 
+    public Double getHighValue()
     {
         return highValue;
     }