package com.iailab.module.ansteel.power.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* 负荷移植-月最大需量,实测需量,有功功率
|
*
|
* @author dyk
|
* @Description
|
* @createTime 2025年04月18日
|
*/
|
@Data
|
@TableName("t_power_demand")
|
public class PowerDemandEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId
|
private String id;
|
/**
|
* 机组名称
|
*/
|
private String name;
|
/**
|
* 月最大需量
|
*/
|
private String maxDemand;
|
/**
|
* 实测需量
|
*/
|
private String curDemand;
|
/**
|
* 有功功率
|
*/
|
private String activePower;
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
}
|