鞍钢鲅鱼圈能源管控系统后端代码
liriming
8 天以前 a53f3e3622571fbc386e40c0f2c90366f1687725
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
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 clock;
 
    @Schema(description = "分组名称")
    private String groupName;
 
    @Schema(description = "指标名称")
    private String indName;
 
    @Schema(description = "偏差值")
    private String indValue;
 
    @Schema(description = "单位")
    private String indUnit;
 
    @Schema(description = "创建时间")
    private Date createDate;
 
 
}