鞍钢鲅鱼圈能源管控系统后端代码
liriming
4 天以前 cf1ecf13ac4c3606371d16aa50f885b831a92e3e
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
package com.iailab.module.ansteel.api.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
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 nodeCode;
 
    @Schema(description = "节点名称")
    private String nodeName;
 
    @Schema(description = "当前电流")
    private BigDecimal curA;
 
    @Schema(description = "当前有功")
    private BigDecimal curP;
 
    @Schema(description = "当前无功")
    private BigDecimal curQ;
 
    @Schema(description = "当前功率因数")
    private BigDecimal curCos;
 
    @Schema(description = "无功返送(1:大于0是,-1:小于0是)")
    private Integer curFlag;
 
    @Schema(description = "预测有功")
    private BigDecimal preP;
 
    @Schema(description = "预测无功")
    private BigDecimal preQ;
 
    @Schema(description = "预测功率因数")
    private BigDecimal preCos;
 
    @Schema(description = "上限")
    private BigDecimal limitH;
 
    @Schema(description = "下限")
    private BigDecimal limitL;
 
    @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;
 
    @Schema(description = "功率因数是否超限(0:正常,1:超限)")
    private Integer cosStatus;
}