package com.best.javaSdk.kdCreateWaybillOrderNotify.request;
|
|
|
|
public class Sender {
|
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;
|
}
|
|
|
}
|