鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
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
39
40
41
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 CokingAnalyTrendDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "分析类型")
    private String analyType;
 
    @Schema(description = "分析标题")
    private String analyTitle;
 
    @Schema(description = "分析日期")
    private String analyDate;
 
    @Schema(description = "分析班次")
    private String analyClass;
 
    @Schema(description = "分析值")
    private String analyValue;
 
    @Schema(description = "内容")
    private String analyContent;
 
    @Schema(description = "排序")
    private Integer sort;
}