鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
8 天以前 30d07c87bc74aa519486efcc86b15e9a85544858
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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;
}