package com.iailab.module.ansteel.power.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* 电力功率因数电网拓扑
|
*
|
* @author Mark sunlightcs@gmail.com
|
* @since 1.0.0 2025-04-11
|
*/
|
@Data
|
@TableName("t_power_net_factor")
|
public class PowerNetFactorEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId
|
private String id;
|
/**
|
* 分组名称
|
*/
|
private String groupName;
|
/**
|
* 节点名称
|
*/
|
private String nodeName;
|
/**
|
* 当前有功
|
*/
|
private String curP;
|
/**
|
* 当前无功
|
*/
|
private String curQ;
|
/**
|
* 当前功率因数
|
*/
|
private String curCos;
|
/**
|
* 无功返送判断条件
|
*/
|
private Integer curFlag;
|
/**
|
* 预测有功
|
*/
|
private String preP;
|
/**
|
* 预测无功
|
*/
|
private String preQ;
|
/**
|
* 预测功率因数
|
*/
|
private String preCos;
|
/**
|
* 预测项ID
|
*/
|
private String itemId;
|
/**
|
* 预测项输出ID
|
*/
|
private String outId;
|
/**
|
* 上限
|
*/
|
private BigDecimal limitH;
|
/**
|
* 下限
|
*/
|
private BigDecimal limitL;
|
/**
|
* 是否超限(0:正常,1:超限)
|
*/
|
private Integer status;
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
}
|