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