KKSU
2024-11-21 80fd9e3da4b45285c29cdb380ce743202b0c2af4
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.best.javaSdk.kdCreateWaybillOrderNotify.request;
 
 
 
public class Receiver {
    private String name;
    private String postCode;
    private String mobile;
    private String prov;
    private String city;
    private String county;
    private String address;
    private String email;
    private String country;
 
    public String getName()
    {
        return this.name;
    }
 
    public void setName(String value)
    {
        this.name = value;
    }
 
    public String getPostCode()
    {
        return this.postCode;
    }
 
    public void setPostCode(String value)
    {
        this.postCode = value;
    }
 
    public String getMobile()
    {
        return this.mobile;
    }
 
    public void setMobile(String value)
    {
        this.mobile = value;
    }
 
    public String getProv()
    {
        return this.prov;
    }
 
    public void setProv(String value)
    {
        this.prov = value;
    }
 
    public String getCity()
    {
        return this.city;
    }
 
    public void setCity(String value)
    {
        this.city = value;
    }
 
    public String getCounty()
    {
        return this.county;
    }
 
    public void setCounty(String value)
    {
        this.county = value;
    }
 
    public String getAddress()
    {
        return this.address;
    }
 
    public void setAddress(String value)
    {
        this.address = value;
    }
 
    public String getEmail()
    {
        return this.email;
    }
 
    public void setEmail(String value)
    {
        this.email = value;
    }
 
    public String getCountry()
    {
        return this.country;
    }
 
    public void setCountry(String value)
    {
        this.country = value;
    }
 
 
}