鞍钢鲅鱼圈能源管控系统后端代码
liriming
7 天以前 2ca77a7f4bea11e958b1121371e3406182e233e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.iailab.module.ansteel.api.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_main_process_index_day")
public class MainProcessIndexDayEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId
    private String id;
    private String indexName;
    private String hisAvg;
    private String theory;
    private String actual;
    private String realData;
}