houzhongjian
2025-03-12 e08eccd6e5855891694cad5490c00d62750cf41f
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
39
40
41
42
43
44
45
46
47
48
package com.iailab.sdk.auth.client.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年11月24日
 */
public class ApiPointsValueQueryDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    private List<String> pointNos;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date start;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date end;
 
    public List<String> getPointNos() {
        return pointNos;
    }
 
    public void setPointNos(List<String> pointNos) {
        this.pointNos = pointNos;
    }
 
    public Date getStart() {
        return start;
    }
 
    public void setStart(Date start) {
        this.start = start;
    }
 
    public Date getEnd() {
        return end;
    }
 
    public void setEnd(Date end) {
        this.end = end;
    }
}