鞍钢鲅鱼圈能源管控系统后端代码
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
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.iailab.module.ansteel.api.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;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2025年04月11日
 */
@Data
@TableName("t_coking_process_main")
public class CokingProcessMainEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.ASSIGN_UUID)
    private String id;
 
    private String category;
 
    private String clock;
 
    private String infoType;
 
    private String indName;
 
    private String avgValue;
 
    private String theoryValue;
 
    private String actualValue;
 
    private String standValue;
 
    private String realValue;
 
    private Integer sort;
}