河北超高压算法调整

This commit is contained in:
2024-01-16 17:26:41 +08:00
parent bdc21f2fd9
commit 0b86eb3eeb
4 changed files with 180 additions and 130 deletions

View File

@@ -19,6 +19,21 @@ public class BusBarDto {
*/
private String orgId;
/**
* 单位下不区分电压等级的在运母线数量
*/
private Integer allOnlineBusNum = 0;
/**
* 单位下不区分电压等级的监测母线数量
*/
private Integer allMonitorBusNum = 0;
/**
* 单位下不区分电压等级的监测率
*/
private Double allMonitorRate = 0.0d;
/**
* 电压等级实体
*/
@@ -35,16 +50,16 @@ public class BusBarDto {
/**
* 监测母线数量
*/
private Integer monitorBusNum;
private Integer monitorBusNum = 0;
/**
* 在运母线数量
*/
private Integer onlineBusNum;
private Integer onlineBusNum = 0;
/**
* 监测率
*/
private Double monitorRate;
private Double monitorRate = 0.0d;
}
}