潘志宝
2024-10-29 d41f14d2986b46da9dd7742f6df63d9725cd29f3
提交 | 用户 | 时间
585be5 1 package com.iailab.module.data.api.dto;
2
d41f14 3 import com.fasterxml.jackson.annotation.JsonFormat;
585be5 4 import lombok.Data;
5
6 import java.util.Date;
7 import java.util.List;
8
9 @Data
10 public class IndexQueryDTO {
d41f14 11
12     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
585be5 13     private Date startDate;
d41f14 14
15     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
585be5 16     private Date endDate;
17     
18     private String code;
19
20     private Integer granularity;
21
22     private List<String> codes;
23 }