|
@@ -9,6 +9,8 @@ public class WifiSum {
|
|
|
|
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
|
|
+ private Long operatorId;
|
|
|
|
+
|
|
private String location;
|
|
private String location;
|
|
|
|
|
|
private Long placeId;
|
|
private Long placeId;
|
|
@@ -78,14 +80,25 @@ public class WifiSum {
|
|
this.sum = sum;
|
|
this.sum = sum;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ public Long getOperatorId() {
|
|
|
|
+ return operatorId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOperatorId(Long operatorId) {
|
|
|
|
+ this.operatorId = operatorId;
|
|
|
|
+ }
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
- return "WifiSum [id=" + id + ", location=" + location + ", placeId="
|
|
|
|
- + placeId + ", sum=" + sum + ", cn=" + cn + ", cnCity="
|
|
|
|
- + cnCity + ", placeName=" + placeName + "]";
|
|
|
|
|
|
+ return "WifiSum [id=" + id + ", operatorId=" + operatorId
|
|
|
|
+ + ", location=" + location + ", placeId=" + placeId + ", sum="
|
|
|
|
+ + sum + ", cn=" + cn + ", cnCity=" + cnCity + ", placeName="
|
|
|
|
+ + placeName + "]";
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
}
|
|
}
|