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