| | |
| | | private String nodeName; |
| | | |
| | | @Schema(description = "当前有功") |
| | | private String curP; |
| | | private BigDecimal curP; |
| | | |
| | | @Schema(description = "当前无功") |
| | | private String curQ; |
| | | private BigDecimal curQ; |
| | | |
| | | @Schema(description = "当前功率因数") |
| | | private String curCos; |
| | | private BigDecimal curCos; |
| | | |
| | | @Schema(description = "无功返送(1:大于0是,-1:小于0是)") |
| | | private Integer curFlag; |
| | | |
| | | @Schema(description = "预测有功") |
| | | private String preP; |
| | | private BigDecimal preP; |
| | | |
| | | @Schema(description = "预测无功") |
| | | private String preQ; |
| | | private BigDecimal preQ; |
| | | |
| | | @Schema(description = "预测功率因数") |
| | | private String preCos; |
| | | private BigDecimal preCos; |
| | | |
| | | @Schema(description = "上限") |
| | | private BigDecimal limitH; |
| | |
| | | @Schema(description = "下限") |
| | | private BigDecimal limitL; |
| | | |
| | | @Schema(description = "是否超限(0:正常,1:超限)") |
| | | @Schema(description = "功率因数是否超限(0:正常,1:超限)") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "排序") |
| | | private Integer sort; |
| | | |
| | | @Schema(description = "有功是否超限(0:正常,1:超限)") |
| | | private Integer pStatus; |
| | | |
| | | @Schema(description = "无功是否超限(0:正常,1:超限)") |
| | | private Integer qStatus; |
| | | |
| | | |
| | | } |