提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.data.dto; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
import lombok.EqualsAndHashCode; |
|
6 |
|
|
7 |
import java.io.Serializable; |
|
8 |
import java.util.Date; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2023年06月28日 09:19:00 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
@EqualsAndHashCode(callSuper = false) |
|
17 |
@Schema(description = "运行时长") |
|
18 |
public class FeignQueryPointDTO implements Serializable { |
|
19 |
|
|
20 |
@Schema(description = "测点编号") |
|
21 |
private String pointCode; |
|
22 |
|
|
23 |
@Schema(description = "类型") |
|
24 |
private String type; |
|
25 |
|
|
26 |
@Schema(description = "开始时间") |
|
27 |
private Date startTime; |
|
28 |
|
|
29 |
@Schema(description = "结束时间") |
|
30 |
private Date endTime; |
|
31 |
|
|
32 |
@Schema(description = "开始日期") |
|
33 |
private String startDate; |
|
34 |
|
|
35 |
@Schema(description = "结束日期") |
|
36 |
private String endDate; |
|
37 |
} |