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