package com.xcgl.weixin.entity; /** * 传感器监测实时数据 * */ public class SensorLiveDto { private String devicename; private String pointname; private String deviceid; private String devicecode; private String pointid; private String pointcode; private double value; private String qcdstate;//状态 private String recordtime; private String normalvalue;//参考值 private String unit; public String getDevicename() { return devicename; } public void setDevicename(String devicename) { this.devicename = devicename; } public String getPointname() { return pointname; } public void setPointname(String pointname) { this.pointname = pointname; } public String getDeviceid() { return deviceid; } public void setDeviceid(String deviceid) { this.deviceid = deviceid; } public String getDevicecode() { return devicecode; } public void setDevicecode(String devicecode) { this.devicecode = devicecode; } public String getPointid() { return pointid; } public void setPointid(String pointid) { this.pointid = pointid; } public String getPointcode() { return pointcode; } public void setPointcode(String pointcode) { this.pointcode = pointcode; } public double getValue() { return value; } public void setValue(double value) { this.value = value; } public String getQcdstate() { return qcdstate; } public void setQcdstate(String qcdstate) { this.qcdstate = qcdstate; } public String getRecordtime() { return recordtime; } public void setRecordtime(String recordtime) { this.recordtime = recordtime; } public String getNormalvalue() { return normalvalue; } public void setNormalvalue(String normalvalue) { this.normalvalue = normalvalue; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } }