houzhongjian
2025-06-12 fc7ebc6bf97d7c4a4a8911c7a5d7cadcbda24719
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
38
package com.iailab.module.data.api.point.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @author Jay
 */
@Schema(description = "数据平台 - 测点数量查询 Request VO")
@Data
public class ApiPointCountReqVO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "测点类型")
    private String pointType;
 
    @Schema(description = "数据类型")
    private String dataType;
 
    @Schema(description = "是否启用")
    private Integer isEnable;
 
    @Schema(description = "采集质量")
    private String collectQuality;
 
    @Schema(description = "开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date startTime;
 
    @Schema(description = "结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date endTime;
 
}