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