package com.iailab.module.ansteel.api.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* 电力功率因数电网拓扑
|
*
|
* @author Mark sunlightcs@gmail.com
|
* @since 1.0.0 2025-04-11
|
*/
|
@Data
|
public class PowerNetFactorDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "id")
|
private String id;
|
|
@Schema(description = "分组名称")
|
private String groupName;
|
|
@Schema(description = "节点名称")
|
private String nodeName;
|
|
@Schema(description = "当前有功")
|
private String curP;
|
|
@Schema(description = "当前无功")
|
private String curQ;
|
|
@Schema(description = "当前功率因数")
|
private String curCos;
|
|
@Schema(description = "预测有功")
|
private String preP;
|
|
@Schema(description = "预测无功")
|
private String preQ;
|
|
@Schema(description = "预测功率因数")
|
private String preCos;
|
|
@Schema(description = "预测项ID")
|
private String itemId;
|
|
@Schema(description = "预测项输出ID")
|
private String outId;
|
|
@Schema(description = "上限")
|
private BigDecimal limitH;
|
|
@Schema(description = "下限")
|
private BigDecimal limitL;
|
|
@Schema(description = "是否超限(0:正常,1:超限)")
|
private Integer status;
|
|
@Schema(description = "排序")
|
private Integer sort;
|
|
|
}
|