package com.whyc.dto.interfaceC;
|
|
import java.util.List;
|
|
public class DataC {
|
private String device_id;
|
private String idc;
|
private String device_type;
|
private List<PointC> points;
|
|
public String getDevice_id() {
|
return device_id;
|
}
|
|
public void setDevice_id(String device_id) {
|
this.device_id = device_id;
|
}
|
|
public String getIdc() {
|
return idc;
|
}
|
|
public void setIdc(String idc) {
|
this.idc = idc;
|
}
|
|
public String getDevice_type() {
|
return device_type;
|
}
|
|
public void setDevice_type(String device_type) {
|
this.device_type = device_type;
|
}
|
|
public List<PointC> getPoints() {
|
return points;
|
}
|
|
public void setPoints(List<PointC> points) {
|
this.points = points;
|
}
|
|
@Override
|
public String toString() {
|
return "DataC{" +
|
"device_id='" + device_id + '\'' +
|
", idc='" + idc + '\'' +
|
", device_type='" + device_type + '\'' +
|
", points=" + points +
|
'}';
|
}
|
}
|