鞍钢鲅鱼圈能源管控系统后端代码
liriming
4 天以前 db12fbf329333476beb98c755e629d38aa9e51dc
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
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 CokingTraceDataDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "id")
    private String id;
 
    @Schema(description = "关联ID")
    private String relId;
 
    @Schema(description = "数据类型")
    private String dataType;
 
    @Schema(description = "异常点位编号")
    private String pointNo;
 
    @Schema(description = "异常点位名称")
    private String pointName;
 
    @Schema(description = "异常时间")
    private Date exDate;
 
    @Schema(description = "异常原因")
    private String exType;
 
 
}