潘志宝
2024-11-19 977edcb50e46f57d5b8fdd4551736b1605fef6fc
提交 | 用户 | 时间
328ef4 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
10 /**
11  * @author PanZhibao
12  * @Description
13  * @createTime 2024年11月18日
14  */
15 @Data
16 public class PreDataSingleChartReqVO implements Serializable {
17     private static final long serialVersionUID = 1L;
18
19     @Schema(description = "图表code")
20     private String chartCode;
21
977edc 22     @Schema(description = "时间格式")
23     private String timeFormat;
24
328ef4 25     @Schema(description = "预测时间")
26     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
27     private Date predictTime;
91343d 28
29     @Schema(description = "开始时间")
30     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
31     private Date startTime;
32
33     @Schema(description = "结束时间")
34     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
35     private Date endTime;
328ef4 36 }