SensorLiveDto.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.xcgl.weixin.entity;
  2. /**
  3. * 传感器监测实时数据
  4. * */
  5. public class SensorLiveDto {
  6. private String devicename;
  7. private String pointname;
  8. private String deviceid;
  9. private String devicecode;
  10. private String pointid;
  11. private String pointcode;
  12. private double value;
  13. private String qcdstate;//状态
  14. private String recordtime;
  15. private String normalvalue;//参考值
  16. private String unit;
  17. public String getDevicename() {
  18. return devicename;
  19. }
  20. public void setDevicename(String devicename) {
  21. this.devicename = devicename;
  22. }
  23. public String getPointname() {
  24. return pointname;
  25. }
  26. public void setPointname(String pointname) {
  27. this.pointname = pointname;
  28. }
  29. public String getDeviceid() {
  30. return deviceid;
  31. }
  32. public void setDeviceid(String deviceid) {
  33. this.deviceid = deviceid;
  34. }
  35. public String getDevicecode() {
  36. return devicecode;
  37. }
  38. public void setDevicecode(String devicecode) {
  39. this.devicecode = devicecode;
  40. }
  41. public String getPointid() {
  42. return pointid;
  43. }
  44. public void setPointid(String pointid) {
  45. this.pointid = pointid;
  46. }
  47. public String getPointcode() {
  48. return pointcode;
  49. }
  50. public void setPointcode(String pointcode) {
  51. this.pointcode = pointcode;
  52. }
  53. public double getValue() {
  54. return value;
  55. }
  56. public void setValue(double value) {
  57. this.value = value;
  58. }
  59. public String getQcdstate() {
  60. return qcdstate;
  61. }
  62. public void setQcdstate(String qcdstate) {
  63. this.qcdstate = qcdstate;
  64. }
  65. public String getRecordtime() {
  66. return recordtime;
  67. }
  68. public void setRecordtime(String recordtime) {
  69. this.recordtime = recordtime;
  70. }
  71. public String getNormalvalue() {
  72. return normalvalue;
  73. }
  74. public void setNormalvalue(String normalvalue) {
  75. this.normalvalue = normalvalue;
  76. }
  77. public String getUnit() {
  78. return unit;
  79. }
  80. public void setUnit(String unit) {
  81. this.unit = unit;
  82. }
  83. }