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
51
52
53
54
55
56
57
58
59
60
package com.whyc.dto.interfaceB;
 
import java.util.List;
 
public class Device {
    private String guid;
    private String tag;
    private String name;
    private String device_type;
    private String path;
    private List<Point> points;
 
    public String getGuid() {
        return guid;
    }
 
    public void setGuid(String guid) {
        this.guid = guid;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getDevice_type() {
        return device_type;
    }
 
    public void setDevice_type(String device_type) {
        this.device_type = device_type;
    }
 
    public String getPath() {
        return path;
    }
 
    public void setPath(String path) {
        this.path = path;
    }
 
    public List<Point> getPoints() {
        return points;
    }
 
    public void setPoints(List<Point> points) {
        this.points = points;
    }
}