-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddress.java
More file actions
83 lines (66 loc) · 1.66 KB
/
Copy pathAddress.java
File metadata and controls
83 lines (66 loc) · 1.66 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package DBTest.bean;
public class Address {
private int id;
private String name;
private String street;
private String prov;
private int country_id;
private String ZipCode;
public Address() {
}
public Address(int id, String name, String street, String prov, int country_id, String ZipCode) {
this.id = id;
this.name = name;
this.street = street;
this.prov = prov;
this.country_id = country_id;
this.ZipCode = ZipCode;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public String getProv() {
return prov;
}
public void setProv(String prov) {
this.prov = prov;
}
public int getCountry_id() {
return country_id;
}
public void setCountry_id(int country_id) {
this.country_id = country_id;
}
public String getZipcode() {
return ZipCode;
}
public void setZipcode(String ZipCode) {
this.ZipCode = ZipCode;
}
@Override
public String toString() {
return "Address{" +
"id=" + id +
", name='" + name + '\'' +
", street='" + street + '\'' +
", prov='" + prov + '\'' +
", country_id=" + country_id +
", ZipCode='" + ZipCode + '\'' +
'}';
}
}