鞍钢鲅鱼圈能源管控系统后端代码
liriming
4 天以前 00762deb0cb1350c83bb2c5f5f68ca1919ddb45e
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.iailab.module.ansteel.plant.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @description:
 * @author: dzd 
 * @date: 2025/6/16 13:59
 **/
@Data
@TableName("t_plant_index_conf")
public class PlantIndexConfEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId
    private String id;
 
    private String businessType;
 
    private String indType;
 
    private String indCode;
 
    private String indName;
 
    private String indUnit;
 
    private String indAvg;
 
    private String indTheory;
 
    private String indOptimal;
 
    private String indReal;
 
    private String indDeviationValue;
 
    private String indDeviationRate;
    
    private String indPrevious;
 
    private Integer sort;
}