package com.iailab.module.ansteel.plant.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @description:
|
* @author: lirm
|
* @date: 2025/6/20 13:59
|
**/
|
@Data
|
@TableName("t_plant_chart_conf")
|
public class PlantChartConfEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
private String indType;
|
|
private String indCode;
|
|
private String indName;
|
|
private String indAvg;
|
|
private String indTheory;
|
|
private String indOptimal;
|
|
private String indReal;
|
|
private String indPower;
|
|
}
|