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;
|
}
|
}
|