潘志宝
2024-11-22 8a74e9c0f3f9fbf5709201719431d0a2b7cb8794
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.model.api.mcs.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
import java.util.LinkedHashMap;
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年11月21日
 */
@Data
public class PlanDataSingleChartRespVO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "预测时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date predictTime;
 
    @Schema(description = "开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date startTime;
 
    @Schema(description = "结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date endTime;
 
    @Schema(description = "图例")
    private List<String> legend;
 
    @Schema(description = "X轴数据")
    private List<String> categories;
 
    @Schema(description = "计划记录")
    private LinkedHashMap<String, List<PlanDataRecordDTO>> record;
}