package test;

public class Address {
	private long id;
	private String premise;
	private String street;
	private String district;
	private String town;
	private String county;
	private String outcode;
	private String incode;
	private String country;
	private long visitorId;

	public void setId(long id) {
		this.id = id;
	}
	public long getId() {
		return id;
	}
	public void setVisitorId(long visitorId) {
		this.visitorId = visitorId;
	}
	public long getVisitorId() {
		return visitorId;
	}
	public String getCountry() {
		return country;
	}
	public void setCountry(String country) {
		this.country = country;
	}
	public String getCounty() {
		return county;
	}
	public void setCounty(String county) {
		this.county = county;
	}
	public String getDistrict() {
		return district;
	}
	public void setDistrict(String district) {
		this.district = district;
	}
	public String getIncode() {
		return incode;
	}
	public void setIncode(String incode) {
		this.incode = incode;
	}
	public String getOutcode() {
		return outcode;
	}
	public void setOutcode(String outcode) {
		this.outcode = outcode;
	}
	public String getPremise() {
		return premise;
	}
	public void setPremise(String premise) {
		this.premise = premise;
	}
	public String getStreet() {
		return street;
	}
	public void setStreet(String street) {
		this.street = street;
	}
	public String getTown() {
		return town;
	}
	public void setTown(String town) {
		this.town = town;
	}
}
