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;
|
|
/**
|
* 负荷移植-月最大需量,实测需量,有功功率
|
*
|
* @author dyk
|
* @Description
|
* @createTime 2025年04月18日
|
*/
|
@Data
|
@TableName("t_power_demand")
|
public class PowerAdjustedFactorEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId
|
private String id;
|
/**
|
* 名称
|
*/
|
private String name;
|
/**
|
*
|
* 点位
|
*/
|
private String pointNo;
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
}
|