|
@@ -1,6 +1,8 @@
|
|
|
package com.huaxu.dto;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
+import com.huaxu.common.Object6Serialize;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
@@ -21,37 +23,52 @@ public class DeviceWaterReportAttributeDto implements Serializable {
|
|
|
private Date collectDate;
|
|
|
|
|
|
@ApiModelProperty(value = "PH最小值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double minPHValue;
|
|
|
@ApiModelProperty(value = "PH最大值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double maxPHValue;
|
|
|
@ApiModelProperty(value = "PH平均值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double avgPHValue;
|
|
|
@ApiModelProperty(value = "PH合计值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double sumPHValue;
|
|
|
@ApiModelProperty(value = "PH最新值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double latestPHValue;
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "CL最小值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double minCLValue;
|
|
|
@ApiModelProperty(value = "CL最大值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double maxCLValue;
|
|
|
@ApiModelProperty(value = "CL平均值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double avgCLValue;
|
|
|
@ApiModelProperty(value = "CL合计值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double sumCLValue;
|
|
|
@ApiModelProperty(value = "CL最新值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double latestCLValue;
|
|
|
|
|
|
@ApiModelProperty(value = "Qu最小值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double minQuValue;
|
|
|
@ApiModelProperty(value = "Qu最大值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double maxQuValue;
|
|
|
@ApiModelProperty(value = "Qu平均值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double avgQuValue;
|
|
|
@ApiModelProperty(value = "Qu合计值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double sumQuValue;
|
|
|
@ApiModelProperty(value = "Qu最新值")
|
|
|
+ @JsonSerialize(using = Object6Serialize.class)
|
|
|
private Double latestQuValue;
|
|
|
|
|
|
}
|