whycxzp
2023-05-11 b0c4d3f59557206ee88ae5af43f4c835e0060149
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
49
50
package com.whyc.dto.interfaceC;
 
public class PointC {
    private Integer point_code;
    private String tag;
    private Double value;
    private Long timestamp;
 
    public Integer getPoint_code() {
        return point_code;
    }
 
    public void setPoint_code(Integer point_code) {
        this.point_code = point_code;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public Double getValue() {
        return value;
    }
 
    public void setValue(Double value) {
        this.value = value;
    }
 
    public Long getTimestamp() {
        return timestamp;
    }
 
    public void setTimestamp(Long timestamp) {
        this.timestamp = timestamp;
    }
 
    @Override
    public String toString() {
        return "PointC{" +
                "point_code=" + point_code +
                ", tag='" + tag + '\'' +
                ", value=" + value +
                ", timestamp=" + timestamp +
                '}';
    }
}