鞍钢鲅鱼圈能源管控系统后端代码
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
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 CokingTraceChartDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "关联ID")
    private String relId;
 
    @Schema(description = "图表名称")
    private String name;
 
    @Schema(description = "查询时间")
    private String clock;
 
    @Schema(description = "值")
    private String valueJson;
 
    @Schema(description = "排序")
    private Integer sort;
 
    @Schema(description = "创建时间")
    private Date createDate;
 
 
}