|
@@ -0,0 +1,26 @@
|
|
|
+package com.diagbot.dto;
|
|
|
+
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description:化验信息
|
|
|
+ * @Author:zhaops
|
|
|
+ * @time: 2018/12/19 14:03
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+public class LisResult {
|
|
|
+ private String name;//套餐名称
|
|
|
+ private String detailName;//化验项名称
|
|
|
+ private String uniqueName;//公表名称
|
|
|
+ private Double value;//值
|
|
|
+ private Double maxValue;//最大值
|
|
|
+ private Double minValue;//最小值
|
|
|
+ private String units;//单位
|
|
|
+ private String otherValue;//其他结果,包括阴性阳性,文字描述等
|
|
|
+ @NotNull(message = "请输入数据来源")
|
|
|
+ private Integer source;
|
|
|
+}
|