鞍钢鲅鱼圈能源管控系统后端代码
dengzedong
4 天以前 b465d9c6020d70fd8c91690fdff8de71665b516b
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
package com.iailab.module.ansteel.coking.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
 
 
/**
 * 焦化工序异常溯源配置
 *
 * @author lirm ${email}
 * @since 1.0.0 2025-04-16
 */
@Data
@Schema(description = "焦化工序异常溯源配置")
public class CokingTraceConfDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "id")
    private String id;
 
    @Schema(description = "信息类型(0:生产情况,1:能源发生,2:能源消耗)")
    private String infoType;
 
    @Schema(description = "指标类型")
    private String indType;
 
    @Schema(description = "数据类型(测点,指标)")
    private String dataType;
 
    @Schema(description = "测点编码")
    private String pointNo;
 
    @Schema(description = "指标编码")
    private String indCode;
 
    @Schema(description = "指标名称")
    private String indName;
 
    @Schema(description = "指标单位")
    private String indUnit;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "拓展字段1")
    private String ext1;
 
    @Schema(description = "拓展字段2")
    private String ext2;
 
    @Schema(description = "拓展字段3")
    private String ext3;
 
    @Schema(description = "拓展字段4")
    private String ext4;
 
    @Schema(description = "拓展字段5")
    private String ext5;
 
    @Schema(description = "排序")
    private Integer sort;
 
 
}