LonLatName.java
855 Bytes
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
package com.bsth.entity;
public class LonLatName {
public String first_name;
public String second_name;
public String way_name;
public String location;
public String getFirst_name() {
return first_name;
}
public void setFirst_name(String first_name) {
this.first_name = first_name;
}
public String getSecond_name() {
return second_name;
}
public void setSecond_name(String second_name) {
this.second_name = second_name;
}
public String getWay_name() {
return way_name;
}
public void setWay_name(String way_name) {
this.way_name = way_name;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
}