鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
21 小时以前 34de09b7eb5e1aa7cc03494b8ed82b49839454f4
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.iailab.module.ansteel.coking.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
 
/**
 * 焦化工序影响因素偏差值
 *
 * @author lirm ${email}
 * @since 1.0.0 2025-04-16
 */
@Data
@Schema(description = "焦化工序影响因素偏差值")
public class CokingTraceDeviationDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "id")
    private String id;
 
    @Schema(description = "关联ID")
    private String relId;
 
    @Schema(description = "工序名称")
    private String process;
 
    @Schema(description = "建议对象")
    private String sugObj;
 
    @Schema(description = "查询时间")
    private String clock;
 
    @Schema(description = "一级指标-偏差值-名称")
    private String ind1Name;
 
    @Schema(description = "一级指标-偏差值-值")
    private String ind1Value;
 
    @Schema(description = "一级指标-偏差值-单位")
    private String ind1Unit;
 
    @Schema(description = "二级指标-偏差值-名称")
    private String ind2Name;
 
    @Schema(description = "二级指标-偏差值-值")
    private String ind2Value;
 
    @Schema(description = "二级指标-偏差值-单位")
    private String ind2Unit;
 
    @Schema(description = "影响因素1-偏差值-名称")
    private String fac1Name;
 
    @Schema(description = "影响因素1-偏差值-值")
    private String fac1Value;
 
    @Schema(description = "影响因素1-偏差值-单位")
    private String fac1Unit;
 
    @Schema(description = "影响因素2-偏差值-名称")
    private String fac2Name;
 
    @Schema(description = "影响因素2-偏差值-值")
    private String fac2Value;
 
    @Schema(description = "影响因素2-偏差值-单位")
    private String fac2Unit;
 
    @Schema(description = "影响因素3-偏差值-名称")
    private String fac3Name;
 
    @Schema(description = "影响因素3-偏差值-值")
    private String fac3Value;
 
    @Schema(description = "影响因素3-偏差值-单位")
    private String fac3Unit;
 
    @Schema(description = "影响因素4-偏差值-名称")
    private String fac4Name;
 
    @Schema(description = "影响因素4-偏差值-值")
    private String fac4Value;
 
    @Schema(description = "影响因素4-偏差值-单位")
    private String fac4Unit;
 
    @Schema(description = "影响因素5-偏差值-名称")
    private String fac5Name;
 
    @Schema(description = "影响因素5-偏差值-值")
    private String fac5Value;
 
    @Schema(description = "影响因素5-偏差值-单位")
    private String fac5Unit;
 
    @Schema(description = "创建时间")
    private Date createDate;
 
 
}