异常数据功能代码优化

This commit is contained in:
2023-08-23 16:01:50 +08:00
parent 39c910a33d
commit ef0ab5eac4
10 changed files with 268 additions and 667 deletions

View File

@@ -461,4 +461,7 @@ public class MpSurplusAbnormalD {
private Float inuharm16 = -3.14159f;
}

View File

@@ -15,6 +15,9 @@ import java.util.List;
@Data
public class LineParam {
/**
* 监测点id,集合为空则默认全部监测点
*/
@ApiModelProperty(name = "lineIds",value = "监测点索引集合")
private List<String> lineIds;
@@ -28,13 +31,14 @@ public class LineParam {
@NotNull(message = "时间类型不可为空")
private Integer type;
@ApiModelProperty(name = "dataDate",value = "时间")
@ApiModelProperty(name = "dataDate",value = "时间日期")
@NotBlank(message = "时间不可为空")
private String dataDate;
/**
* 标识从那个库里查询数据
*/
@Deprecated
@ApiModelProperty(name = "dataSource",value = "数据源0:oracle1:influxdb 2:mysql")
private Integer dataSource;