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;
|
}
|