EquipmentInfo.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. package com.lqkj.info.entity;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.lqkj.common.annotation.Excel;
  5. import com.lqkj.common.core.model.BaseEntity;
  6. /**
  7. * 设备信息对象 equipment_info
  8. *
  9. * @author lqkj
  10. * @date 2024-11-12
  11. */
  12. public class EquipmentInfo extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 设备id */
  16. private Integer equipmentId;
  17. /** 类别id */
  18. private Integer typeId;
  19. /** 房间编号 */
  20. @Excel(name = "房间编号")
  21. private Integer roomId;
  22. /** 大楼编号 */
  23. @Excel(name = "大楼编号")
  24. private Integer buildingId;
  25. /** 区域id */
  26. @Excel(name = "区域id")
  27. private Integer areaId;
  28. /** 名称 */
  29. @Excel(name = "名称")
  30. private String equipmentName;
  31. /** 二维坐标 */
  32. @Excel(name = "二维坐标")
  33. private String lngLat;
  34. /** 三维坐标 */
  35. @Excel(name = "三维坐标")
  36. private String rasterLngLat;
  37. /** 类型 */
  38. @Excel(name = "类型")
  39. private String typeName;
  40. /** 状态 */
  41. @Excel(name = "状态")
  42. private Integer status;
  43. /** 使用状态 */
  44. private Integer deviceStatus;
  45. /** 设备编号 */
  46. private String equipCode;
  47. /** 品牌 */
  48. private Integer brand;
  49. /** 园区id */
  50. private Integer parkId;
  51. public void setEquipmentId(Integer equipmentId)
  52. {
  53. this.equipmentId = equipmentId;
  54. }
  55. public Integer getEquipmentId()
  56. {
  57. return equipmentId;
  58. }
  59. public void setTypeId(Integer typeId)
  60. {
  61. this.typeId = typeId;
  62. }
  63. public Integer getTypeId()
  64. {
  65. return typeId;
  66. }
  67. public void setRoomId(Integer roomId)
  68. {
  69. this.roomId = roomId;
  70. }
  71. public Integer getRoomId()
  72. {
  73. return roomId;
  74. }
  75. public void setBuildingId(Integer buildingId)
  76. {
  77. this.buildingId = buildingId;
  78. }
  79. public Integer getBuildingId()
  80. {
  81. return buildingId;
  82. }
  83. public void setAreaId(Integer areaId)
  84. {
  85. this.areaId = areaId;
  86. }
  87. public Integer getAreaId()
  88. {
  89. return areaId;
  90. }
  91. public void setEquipmentName(String equipmentName)
  92. {
  93. this.equipmentName = equipmentName;
  94. }
  95. public String getEquipmentName()
  96. {
  97. return equipmentName;
  98. }
  99. public void setLngLat(String lngLat)
  100. {
  101. this.lngLat = lngLat;
  102. }
  103. public String getLngLat()
  104. {
  105. return lngLat;
  106. }
  107. public void setRasterLngLat(String rasterLngLat)
  108. {
  109. this.rasterLngLat = rasterLngLat;
  110. }
  111. public String getRasterLngLat()
  112. {
  113. return rasterLngLat;
  114. }
  115. public void setTypeName(String typeName)
  116. {
  117. this.typeName = typeName;
  118. }
  119. public String getTypeName()
  120. {
  121. return typeName;
  122. }
  123. public void setStatus(Integer status)
  124. {
  125. this.status = status;
  126. }
  127. public Integer getStatus()
  128. {
  129. return status;
  130. }
  131. public Integer getDeviceStatus() {
  132. return deviceStatus;
  133. }
  134. public void setDeviceStatus(Integer deviceStatus) {
  135. this.deviceStatus = deviceStatus;
  136. }
  137. public String getEquipCode() {
  138. return equipCode;
  139. }
  140. public void setEquipCode(String equipCode) {
  141. this.equipCode = equipCode;
  142. }
  143. public Integer getBrand() {
  144. return brand;
  145. }
  146. public void setBrand(Integer brand) {
  147. this.brand = brand;
  148. }
  149. public Integer getParkId() {
  150. return parkId;
  151. }
  152. public void setParkId(Integer parkId) {
  153. this.parkId = parkId;
  154. }
  155. @Override
  156. public String toString() {
  157. return "EquipmentInfo{" +
  158. "equipmentId=" + equipmentId +
  159. ", typeId=" + typeId +
  160. ", roomId=" + roomId +
  161. ", buildingId=" + buildingId +
  162. ", areaId=" + areaId +
  163. ", equipmentName='" + equipmentName + '\'' +
  164. ", lngLat='" + lngLat + '\'' +
  165. ", rasterLngLat='" + rasterLngLat + '\'' +
  166. ", typeName='" + typeName + '\'' +
  167. ", status=" + status +
  168. ", deviceStatus=" + deviceStatus +
  169. ", equipCode='" + equipCode + '\'' +
  170. ", brand=" + brand +
  171. ", parkId=" + parkId +
  172. '}';
  173. }
  174. }