潘志宝
2024-12-11 cca8f689d8cb2ec4d3e757d9e3e4ccb7ed03e460
提交 | 用户 | 时间
b368e6 1 package com.iailab.module.model.api.mcs.dto;
2
3 import com.fasterxml.jackson.annotation.JsonFormat;
4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6
7 import java.io.Serializable;
8 import java.util.Date;
9 import java.util.List;
10
11 /**
12  * @author PanZhibao
13  * @Description
14  * @createTime 2024年11月13日
15  */
16 @Data
17 public class PreDataBarLineRespVO implements Serializable {
18     private static final long serialVersionUID = 1L;
19
20     @Schema(description = "预测时间")
21     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
22     private Date predictTime;
23
24     @Schema(description = "开始时间")
25     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
26     private Date startTime;
27
28     @Schema(description = "结束时间")
29     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
30     private Date endTime;
31
32     @Schema(description = "图例")
33     private List<String> legend;
34
35     @Schema(description = "X轴数据")
36     private List<String> categories;
37
38     @Schema(description = "图表数据")
39     private List<PreDataViewRespDTO> dataViewList;
40 }