提交 | 用户 | 时间
|
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 |
} |