超高压-综合分析代码调整

This commit is contained in:
2023-09-13 16:31:01 +08:00
parent 61743b4b7e
commit 28de2aa63d
3 changed files with 20 additions and 6 deletions

View File

@@ -28,7 +28,12 @@ public class AreaDTO {
private Double averageOverDay = 0.0;
/**
* 占比
* 符合性占比
*/
private Double ratio = 0.0;
/**
* 监测点超标占比
*/
private Double lineRatio = 0.0;
}

View File

@@ -32,12 +32,15 @@ public class HarmonicDeptVO implements Serializable {
@ApiModelProperty("超标监测点数")
private Integer overLineCount = 0;
/**
* 占比
*/
@ApiModelProperty("超标占比")
@ApiModelProperty("符合性占比")
private Double ratio = -1.0;
/**
* 监测点超标占比
*/
@ApiModelProperty("监测点超标占比")
private Double lineRatio;
/**
* 平均超标天数
*/