| | |
| | | public class PowerNetFactorDTO implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Schema(description = "id") |
| | | private String id; |
| | | @Schema(description = "id") |
| | | private String id; |
| | | |
| | | @Schema(description = "分组名称") |
| | | private String groupName; |
| | | @Schema(description = "分组名称") |
| | | private String groupName; |
| | | |
| | | @Schema(description = "节点名称") |
| | | private String nodeName; |
| | | @Schema(description = "节点编号") |
| | | private String nodeCode; |
| | | |
| | | @Schema(description = "当前有功") |
| | | private String curP; |
| | | @Schema(description = "节点名称") |
| | | private String nodeName; |
| | | |
| | | @Schema(description = "当前无功") |
| | | private String curQ; |
| | | @Schema(description = "当前有功") |
| | | private String curP; |
| | | |
| | | @Schema(description = "当前功率因数") |
| | | private String curCos; |
| | | @Schema(description = "当前无功") |
| | | private String curQ; |
| | | |
| | | @Schema(description = "预测有功") |
| | | private String preP; |
| | | @Schema(description = "当前功率因数") |
| | | private String curCos; |
| | | |
| | | @Schema(description = "预测无功") |
| | | private String preQ; |
| | | @Schema(description = "无功返送(1:大于0是,-1:小于0是)") |
| | | private Integer curFlag; |
| | | |
| | | @Schema(description = "预测功率因数") |
| | | private String preCos; |
| | | @Schema(description = "预测有功") |
| | | private String preP; |
| | | |
| | | @Schema(description = "预测项ID") |
| | | private String itemId; |
| | | @Schema(description = "预测无功") |
| | | private String preQ; |
| | | |
| | | @Schema(description = "预测项输出ID") |
| | | private String outId; |
| | | @Schema(description = "预测功率因数") |
| | | private String preCos; |
| | | |
| | | @Schema(description = "上限") |
| | | private BigDecimal limitH; |
| | | @Schema(description = "上限") |
| | | private BigDecimal limitH; |
| | | |
| | | @Schema(description = "下限") |
| | | private BigDecimal limitL; |
| | | @Schema(description = "下限") |
| | | private BigDecimal limitL; |
| | | |
| | | @Schema(description = "是否超限(0:正常,1:超限)") |
| | | private Integer status; |
| | | @Schema(description = "是否超限(0:正常,1:超限)") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "排序") |
| | | private Integer sort; |
| | | @Schema(description = "排序") |
| | | private Integer sort; |
| | | |
| | | |
| | | } |