鞍钢鲅鱼圈能源管控系统后端代码
liriming
2025-03-17 cb1441d3a1fd58e4dfcde25bcba26752e6a2a8c4
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
package com.iailab.module.ansteel.mpk.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @description: 发电厂机组运行情况
 * @author: lirm
 * @date: 2025/03/13
 **/
@Data
@TableName("t_power_run_state")
public class PowerRunStateEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId
    private String id;
    /**
     * 机组名称
     */
    private String machineName;
    /**
     * 气耗率
     */
    private String qhRate;
    /**
     * 负荷率
     */
    private String fhRate;
    /**
     * 煤气总消耗
     */
    private String gasTotal;
    /**
     * 煤气可消纳量
     */
    private String gasCost;
    /**
     * 煤气剩余调节量
     */
    private String gasSurplus;
    /**
     * BFG
     */
    private String bfg;
    /**
     * COG
     */
    private String ldg;
    /**
     * LDG
     */
    private String cog;
}