BizDevice.java 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. package com.ruoyi.business.domain;
  2. import java.util.Date;
  3. import lombok.Builder;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. import com.ruoyi.common.annotation.Excel;
  7. import com.ruoyi.common.core.domain.BaseEntity;
  8. /**
  9. * 设备对象 biz_device
  10. *
  11. * @author slibra
  12. * @date 2024-09-26
  13. */
  14. @Builder
  15. public class BizDevice extends BaseEntity
  16. {
  17. private static final long serialVersionUID = 1L;
  18. /** $column.columnComment */
  19. private Long deviceId;
  20. /** $column.columnComment */
  21. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  22. private String deviceNo;
  23. /** $column.columnComment */
  24. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  25. private String deviceName;
  26. /** $column.columnComment */
  27. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  28. private String deviceSn;
  29. /** $column.columnComment */
  30. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  31. private String deviceModel;
  32. /** $column.columnComment */
  33. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  34. private String deviceMaker;
  35. /** $column.columnComment */
  36. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  37. private Long deviceWorks;
  38. /** $column.columnComment */
  39. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  40. private String deviceMaintainer;
  41. /** $column.columnComment */
  42. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  43. private String deviceTel;
  44. /** $column.columnComment */
  45. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  46. private String deviceType;
  47. /** $column.columnComment */
  48. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  49. private String deviceStatus;
  50. /** $column.columnComment */
  51. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  52. private String assayStatus;
  53. /** $column.columnComment */
  54. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  55. private Date assayTime;
  56. /** $column.columnComment */
  57. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  58. private Date repairTime;
  59. /** $column.columnComment */
  60. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  61. private String repairBy;
  62. /** 故障代码 */
  63. @Excel(name = "故障代码")
  64. private String faultCode;
  65. /** 结果续传文件名 */
  66. @Excel(name = "结果续传文件名")
  67. private String deviceXujieJieguo;
  68. /** 报警续传文件名 */
  69. @Excel(name = "报警续传文件名")
  70. private String deviceXujieBaojing;
  71. /** $column.columnComment */
  72. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  73. private String deviceProvince;
  74. /** $column.columnComment */
  75. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  76. private String deviceCity;
  77. /** $column.columnComment */
  78. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  79. private String deviceArea;
  80. /** $column.columnComment */
  81. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  82. private String deviceLongitude;
  83. /** $column.columnComment */
  84. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  85. private String deviceLatitude;
  86. /** $column.columnComment */
  87. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  88. private String deviceAddress;
  89. /** 设备类型(1:化验室,2:连续检测) */
  90. @Excel(name = "设备类型(1:化验室,2:连续检测)")
  91. private String type;
  92. public void setDeviceId(Long deviceId)
  93. {
  94. this.deviceId = deviceId;
  95. }
  96. public Long getDeviceId()
  97. {
  98. return deviceId;
  99. }
  100. public void setDeviceNo(String deviceNo)
  101. {
  102. this.deviceNo = deviceNo;
  103. }
  104. public String getDeviceNo()
  105. {
  106. return deviceNo;
  107. }
  108. public void setDeviceName(String deviceName)
  109. {
  110. this.deviceName = deviceName;
  111. }
  112. public String getDeviceName()
  113. {
  114. return deviceName;
  115. }
  116. public void setDeviceSn(String deviceSn)
  117. {
  118. this.deviceSn = deviceSn;
  119. }
  120. public String getDeviceSn()
  121. {
  122. return deviceSn;
  123. }
  124. public void setDeviceModel(String deviceModel)
  125. {
  126. this.deviceModel = deviceModel;
  127. }
  128. public String getDeviceModel()
  129. {
  130. return deviceModel;
  131. }
  132. public void setDeviceMaker(String deviceMaker)
  133. {
  134. this.deviceMaker = deviceMaker;
  135. }
  136. public String getDeviceMaker()
  137. {
  138. return deviceMaker;
  139. }
  140. public void setDeviceWorks(Long deviceWorks)
  141. {
  142. this.deviceWorks = deviceWorks;
  143. }
  144. public Long getDeviceWorks()
  145. {
  146. return deviceWorks;
  147. }
  148. public void setDeviceMaintainer(String deviceMaintainer)
  149. {
  150. this.deviceMaintainer = deviceMaintainer;
  151. }
  152. public String getDeviceMaintainer()
  153. {
  154. return deviceMaintainer;
  155. }
  156. public void setDeviceTel(String deviceTel)
  157. {
  158. this.deviceTel = deviceTel;
  159. }
  160. public String getDeviceTel()
  161. {
  162. return deviceTel;
  163. }
  164. public void setDeviceType(String deviceType)
  165. {
  166. this.deviceType = deviceType;
  167. }
  168. public String getDeviceType()
  169. {
  170. return deviceType;
  171. }
  172. public void setDeviceStatus(String deviceStatus)
  173. {
  174. this.deviceStatus = deviceStatus;
  175. }
  176. public String getDeviceStatus()
  177. {
  178. return deviceStatus;
  179. }
  180. public void setAssayStatus(String assayStatus)
  181. {
  182. this.assayStatus = assayStatus;
  183. }
  184. public String getAssayStatus()
  185. {
  186. return assayStatus;
  187. }
  188. public void setAssayTime(Date assayTime)
  189. {
  190. this.assayTime = assayTime;
  191. }
  192. public Date getAssayTime()
  193. {
  194. return assayTime;
  195. }
  196. public void setRepairTime(Date repairTime)
  197. {
  198. this.repairTime = repairTime;
  199. }
  200. public Date getRepairTime()
  201. {
  202. return repairTime;
  203. }
  204. public void setRepairBy(String repairBy)
  205. {
  206. this.repairBy = repairBy;
  207. }
  208. public String getRepairBy()
  209. {
  210. return repairBy;
  211. }
  212. public void setFaultCode(String faultCode)
  213. {
  214. this.faultCode = faultCode;
  215. }
  216. public String getFaultCode()
  217. {
  218. return faultCode;
  219. }
  220. public void setDeviceXujieJieguo(String deviceXujieJieguo)
  221. {
  222. this.deviceXujieJieguo = deviceXujieJieguo;
  223. }
  224. public String getDeviceXujieJieguo()
  225. {
  226. return deviceXujieJieguo;
  227. }
  228. public void setDeviceXujieBaojing(String deviceXujieBaojing)
  229. {
  230. this.deviceXujieBaojing = deviceXujieBaojing;
  231. }
  232. public String getDeviceXujieBaojing()
  233. {
  234. return deviceXujieBaojing;
  235. }
  236. public void setDeviceProvince(String deviceProvince)
  237. {
  238. this.deviceProvince = deviceProvince;
  239. }
  240. public String getDeviceProvince()
  241. {
  242. return deviceProvince;
  243. }
  244. public void setDeviceCity(String deviceCity)
  245. {
  246. this.deviceCity = deviceCity;
  247. }
  248. public String getDeviceCity()
  249. {
  250. return deviceCity;
  251. }
  252. public void setDeviceArea(String deviceArea)
  253. {
  254. this.deviceArea = deviceArea;
  255. }
  256. public String getDeviceArea()
  257. {
  258. return deviceArea;
  259. }
  260. public void setDeviceLongitude(String deviceLongitude)
  261. {
  262. this.deviceLongitude = deviceLongitude;
  263. }
  264. public String getDeviceLongitude()
  265. {
  266. return deviceLongitude;
  267. }
  268. public void setDeviceLatitude(String deviceLatitude)
  269. {
  270. this.deviceLatitude = deviceLatitude;
  271. }
  272. public String getDeviceLatitude()
  273. {
  274. return deviceLatitude;
  275. }
  276. public void setDeviceAddress(String deviceAddress)
  277. {
  278. this.deviceAddress = deviceAddress;
  279. }
  280. public String getDeviceAddress()
  281. {
  282. return deviceAddress;
  283. }
  284. public void setType(String type)
  285. {
  286. this.type = type;
  287. }
  288. public String getType()
  289. {
  290. return type;
  291. }
  292. @Override
  293. public String toString() {
  294. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  295. .append("deviceId", getDeviceId())
  296. .append("deviceNo", getDeviceNo())
  297. .append("deviceName", getDeviceName())
  298. .append("deviceSn", getDeviceSn())
  299. .append("deviceModel", getDeviceModel())
  300. .append("deviceMaker", getDeviceMaker())
  301. .append("deviceWorks", getDeviceWorks())
  302. .append("deviceMaintainer", getDeviceMaintainer())
  303. .append("deviceTel", getDeviceTel())
  304. .append("deviceType", getDeviceType())
  305. .append("deviceStatus", getDeviceStatus())
  306. .append("assayStatus", getAssayStatus())
  307. .append("assayTime", getAssayTime())
  308. .append("repairTime", getRepairTime())
  309. .append("repairBy", getRepairBy())
  310. .append("createBy", getCreateBy())
  311. .append("createTime", getCreateTime())
  312. .append("updateBy", getUpdateBy())
  313. .append("updateTime", getUpdateTime())
  314. .append("faultCode", getFaultCode())
  315. .append("deviceXujieJieguo", getDeviceXujieJieguo())
  316. .append("deviceXujieBaojing", getDeviceXujieBaojing())
  317. .append("deviceProvince", getDeviceProvince())
  318. .append("deviceCity", getDeviceCity())
  319. .append("deviceArea", getDeviceArea())
  320. .append("deviceLongitude", getDeviceLongitude())
  321. .append("deviceLatitude", getDeviceLatitude())
  322. .append("deviceAddress", getDeviceAddress())
  323. .append("type", getType())
  324. .toString();
  325. }
  326. }