Wifi.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. package com.cloudcross.ssp.model;
  2. import java.util.Date;
  3. /**
  4. * Wifi,对应数据库里面的表t_wifi
  5. * @author chenyou
  6. */
  7. public class Wifi {
  8. private Long id;
  9. //热点名称
  10. private String name;
  11. private String SSID;
  12. private String location;
  13. //省的名称,在联表查询时使用
  14. private String cn;
  15. //市的名称,在联表查询时使用
  16. private String cnCity;
  17. private String apmac;
  18. private String address;
  19. private Float longitude;
  20. private Float latitude;
  21. //运营商场景
  22. private String place;
  23. //场景id,这是云联自己定义的场景名称对应的id
  24. private Long placeId;
  25. //数聚场景子场景在联表查询时使用
  26. private String placeName;
  27. //数聚场景名称在联表查询时使用
  28. private String placeClassName;
  29. //运营商id
  30. private Long operatorId;
  31. //状态,0-开启,1-暂停,-1-删除
  32. private Integer status;
  33. //更新时间
  34. private Date updated;
  35. public String getPlaceClassName() {
  36. return placeClassName;
  37. }
  38. public void setPlaceClassName(String placeClassName) {
  39. this.placeClassName = placeClassName;
  40. }
  41. public String getCn() {
  42. return cn;
  43. }
  44. public void setCn(String cn) {
  45. this.cn = cn;
  46. }
  47. public String getCnCity() {
  48. return cnCity;
  49. }
  50. public void setCnCity(String cnCity) {
  51. this.cnCity = cnCity;
  52. }
  53. public String getPlaceName() {
  54. return placeName;
  55. }
  56. public void setPlaceName(String placeName) {
  57. this.placeName = placeName;
  58. }
  59. public String getName() {
  60. return name;
  61. }
  62. public void setName(String name) {
  63. this.name = name;
  64. }
  65. public String getSSID() {
  66. return SSID;
  67. }
  68. public void setSSID(String sSID) {
  69. SSID = sSID;
  70. }
  71. public String getApmac() {
  72. return apmac;
  73. }
  74. public void setApmac(String apmac) {
  75. this.apmac = apmac;
  76. }
  77. public String getPlace() {
  78. return place;
  79. }
  80. public void setPlace(String place) {
  81. this.place = place;
  82. }
  83. public Long getPlaceId() {
  84. return placeId;
  85. }
  86. public void setPlaceId(Long placeId) {
  87. this.placeId = placeId;
  88. }
  89. public Long getOperatorId() {
  90. return operatorId;
  91. }
  92. public void setOperatorId(Long operatorId) {
  93. this.operatorId = operatorId;
  94. }
  95. public Integer getStatus() {
  96. return status;
  97. }
  98. public void setStatus(Integer status) {
  99. this.status = status;
  100. }
  101. public Date getUpdated() {
  102. return updated;
  103. }
  104. public void setUpdated(Date updated) {
  105. this.updated = updated;
  106. }
  107. public Long getId() {
  108. return id;
  109. }
  110. public void setId(Long id) {
  111. this.id = id;
  112. }
  113. public String getLocation() {
  114. return location;
  115. }
  116. public void setLocation(String location) {
  117. this.location = location;
  118. }
  119. public String getAddress() {
  120. return address;
  121. }
  122. public void setAddress(String address) {
  123. this.address = address;
  124. }
  125. public Float getLongitude() {
  126. return longitude;
  127. }
  128. public void setLongitude(Float longitude) {
  129. this.longitude = longitude;
  130. }
  131. public Float getLatitude() {
  132. return latitude;
  133. }
  134. public void setLatitude(Float latitude) {
  135. this.latitude = latitude;
  136. }
  137. @Override
  138. public String toString() {
  139. return "Wifi [id=" + id + ", name=" + name + ", SSID=" + SSID
  140. + ", location=" + location + ", cn=" + cn + ", cnCity="
  141. + cnCity + ", apmac=" + apmac + ", address=" + address
  142. + ", longitude=" + longitude + ", latitude=" + latitude
  143. + ", place=" + place + ", placeId=" + placeId + ", placeName="
  144. + placeName + ", placeClassName=" + placeClassName
  145. + ", operatorId=" + operatorId + ", status=" + status
  146. + ", updated=" + updated + "]";
  147. }
  148. }