鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
9 天以前 fc908c0965ae7579a53eaa76ceb4b5439d325c69
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
package com.iailab.module.ansteel.api.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2025年04月11日
 */
@Schema(description = "焦化工序-日生产信息")
@Data
public class CokingProdDayDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "查询时间")
    private String clock;
 
    @Schema(description = "信息类型(0:生产情况,1:能源发生,2:能源消耗)")
    private String infoType;
 
    @Schema(description = "数据名称")
    private String indName;
 
    @Schema(description = "数据单位")
    private String indUnit;
 
    @Schema(description = "数据值")
    private String indValue;
 
    @Schema(description = "排序")
    private Integer sort;
}