TGuijiHousingconstructionYsljc.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. package com.sooka.system.domain;
  2. import com.sooka.common.annotation.Excel;
  3. import com.sooka.common.core.domain.BaseEntity;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. /**
  7. * 调度系统-用水量检测对象 t_guiji_housingconstruction_ysljc
  8. *
  9. * @author lei
  10. * @date 2021-10-30
  11. */
  12. public class TGuijiHousingconstructionYsljc extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 传感器编号 */
  16. private String id;
  17. /** 推送时间 */
  18. @Excel(name = "推送时间")
  19. private String cdTime;
  20. /** 批次号 */
  21. @Excel(name = "批次号")
  22. private String cdBatch;
  23. /** 操作状态 */
  24. @Excel(name = "操作状态")
  25. private String cdOperation;
  26. /** 数据来源 */
  27. @Excel(name = "数据来源")
  28. private String cdSource;
  29. /** 地区名称 */
  30. @Excel(name = "地区名称")
  31. private String dnm;
  32. /** 站点名称 */
  33. @Excel(name = "站点名称")
  34. private String snm;
  35. /** 传感器列表 */
  36. @Excel(name = "传感器列表")
  37. private String sensor;
  38. /** 传感器名称 */
  39. @Excel(name = "传感器名称")
  40. private String name;
  41. /** 时间戳 */
  42. @Excel(name = "时间戳")
  43. private String time;
  44. /** 数值 */
  45. @Excel(name = "数值")
  46. private String value;
  47. /** null */
  48. @Excel(name = "null")
  49. private String ssid;
  50. public void setId(String id)
  51. {
  52. this.id = id;
  53. }
  54. public String getId()
  55. {
  56. return id;
  57. }
  58. public void setCdTime(String cdTime)
  59. {
  60. this.cdTime = cdTime;
  61. }
  62. public String getCdTime()
  63. {
  64. return cdTime;
  65. }
  66. public void setCdBatch(String cdBatch)
  67. {
  68. this.cdBatch = cdBatch;
  69. }
  70. public String getCdBatch()
  71. {
  72. return cdBatch;
  73. }
  74. public void setCdOperation(String cdOperation)
  75. {
  76. this.cdOperation = cdOperation;
  77. }
  78. public String getCdOperation()
  79. {
  80. return cdOperation;
  81. }
  82. public void setCdSource(String cdSource)
  83. {
  84. this.cdSource = cdSource;
  85. }
  86. public String getCdSource()
  87. {
  88. return cdSource;
  89. }
  90. public void setDnm(String dnm)
  91. {
  92. this.dnm = dnm;
  93. }
  94. public String getDnm()
  95. {
  96. return dnm;
  97. }
  98. public void setSnm(String snm)
  99. {
  100. this.snm = snm;
  101. }
  102. public String getSnm()
  103. {
  104. return snm;
  105. }
  106. public void setSensor(String sensor)
  107. {
  108. this.sensor = sensor;
  109. }
  110. public String getSensor()
  111. {
  112. return sensor;
  113. }
  114. public void setName(String name)
  115. {
  116. this.name = name;
  117. }
  118. public String getName()
  119. {
  120. return name;
  121. }
  122. public void setTime(String time)
  123. {
  124. this.time = time;
  125. }
  126. public String getTime()
  127. {
  128. return time;
  129. }
  130. public void setValue(String value)
  131. {
  132. this.value = value;
  133. }
  134. public String getValue()
  135. {
  136. return value;
  137. }
  138. public void setSsid(String ssid)
  139. {
  140. this.ssid = ssid;
  141. }
  142. public String getSsid()
  143. {
  144. return ssid;
  145. }
  146. @Override
  147. public String toString() {
  148. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  149. .append("id", getId())
  150. .append("createTime", getCreateTime())
  151. .append("cdTime", getCdTime())
  152. .append("cdBatch", getCdBatch())
  153. .append("cdOperation", getCdOperation())
  154. .append("cdSource", getCdSource())
  155. .append("dnm", getDnm())
  156. .append("snm", getSnm())
  157. .append("sensor", getSensor())
  158. .append("name", getName())
  159. .append("time", getTime())
  160. .append("value", getValue())
  161. .append("ssid", getSsid())
  162. .toString();
  163. }
  164. }