blob: 128af68856b61b094825a7404910e16b70d9cd4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
package cn.ac.iie.bean.voipSipCount;
public class VoipIpLocation {
private String country;
private String region;
private String nationCode;
private long count;
private String interval_time;
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getRegion() {
return region;
}
public void setRegion(String region) {
this.region = region;
}
public String getNationCode() {
return nationCode;
}
public void setNationCode(String nationCode) {
this.nationCode = nationCode;
}
public long getCount() {
return count;
}
public void setCount(long count) {
this.count = count;
}
public String getInterval_time() {
return interval_time;
}
public void setInterval_time(String interval_time) {
this.interval_time = interval_time;
}
}
|