-
Notifications
You must be signed in to change notification settings - Fork 2
/
Table_data.java
57 lines (52 loc) · 982 Bytes
/
Table_data.java
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
53
54
55
56
57
package project_A;
public class Table_data {
String num;
String site;
String city;
String zone;
String function;
Table_data(){
num="";
site="";
city="";
zone="";
function="";
}
Table_data(String num,String site,String city,String zone,String function){
this.num =num;
this.site =site;
this.city =city;
this.zone =zone;
this.function = function;
}
public String getNum() {
return num;
}
public void setNum(String num) {
this.num = num;
}
public String getSite() {
return site;
}
public void setSite(String site) {
this.site = site;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getZone() {
return zone;
}
public void setZone(String zone) {
this.zone = zone;
}
public String getFunction() {
return function;
}
public void setFunction(String function) {
this.function = function;
}
}