package com.iailab.module.ansteel.gas.entity;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 煤气预测配置
|
*
|
* @author DongYukun
|
* @Description
|
* @createTime 2025年5月7日
|
*/
|
@Data
|
@TableName("t_gas_pred_conf")
|
public class GasPredConfEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId
|
private String id;
|
/**
|
* 预测图编号
|
*/
|
private String chartCode;
|
/**
|
* 用户类型(发生,消耗)
|
*/
|
private String userType;
|
/**
|
* 预测项编号
|
*/
|
private String itemNo;
|
/**
|
* 预测项名称
|
*/
|
private String itemName;
|
/**
|
* 预测项输出id
|
*/
|
private String outId;
|
/**
|
* 预测项输出key
|
*/
|
private String outKey;
|
/**
|
* 预测项输出名称
|
*/
|
private String outName;
|
/**
|
* 是否默认加载
|
*/
|
private Integer isDefaultLoad;
|
/**
|
* 排序
|
*/
|
private String sort;
|
}
|