鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
3 天以前 5c92309910361bb197208ffdd95fd84e531b624a
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.iailab.module.ansteel.coking.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月17日
 */
@Data
@TableName("t_coking_trace_ind")
public class CokingTraceIndEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.ASSIGN_UUID)
    private String id;
 
    /**
     * 关联ID
     */
    private String relId;
 
    /**
     * 标题
     */
    private String title;
 
    /**
     * 查询时间
     */
    private String clock;
    /**
     * 编码
     */
    private String indCode;
    /**
     * 名称
     */
    private String indName;
 
    /**
     * 值
     */
    private String indValue;
 
    /**
     * 单位
     */
    private String indUnit;
 
    /**
     * 拓展字段1
     */
    private String ext1;
 
    /**
     * 拓展字段2
     */
    private String ext2;
 
    /**
     * 拓展字段3
     */
    private String ext3;
 
    /**
     * 拓展字段4
     */
    private String ext4;
 
    /**
     * 拓展字段5
     */
    private String ext5;
 
    /**
     * 排序
     */
    private String sort;
}