Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
31568 tejbeer 1
package com.spice.profitmandi.dao.service.dtdc;
2
 
3
import com.fasterxml.jackson.annotation.JsonProperty;
4
 
5
public class DestinationDetails {
6
	@JsonProperty("name")
7
	private String name;
8
 
9
	@JsonProperty("phone")
10
	private String phone;
11
 
12
	@JsonProperty("alternate_phone")
13
	private String alternatePhone;
14
 
15
	@JsonProperty("address_line_1")
16
	private String addressLine1;
17
 
18
	@JsonProperty("address_line_2")
19
	private String addressLine2;
20
 
21
	@JsonProperty("pincode")
22
	private String pincode;
23
 
24
	@JsonProperty("city")
25
	private String city;
26
 
27
	@JsonProperty("state")
28
	private String state;
29
 
30
	public String getName() {
31
		return name;
32
	}
33
 
34
	public void setName(String name) {
35
		this.name = name;
36
	}
37
 
38
	public String getPhone() {
39
		return phone;
40
	}
41
 
42
	public void setPhone(String phone) {
43
		this.phone = phone;
44
	}
45
 
46
	public String getAlternatePhone() {
47
		return alternatePhone;
48
	}
49
 
50
	public void setAlternatePhone(String alternatePhone) {
51
		this.alternatePhone = alternatePhone;
52
	}
53
 
54
	public String getAddressLine1() {
55
		return addressLine1;
56
	}
57
 
58
	public void setAddressLine1(String addressLine1) {
59
		this.addressLine1 = addressLine1;
60
	}
61
 
62
	public String getAddressLine2() {
63
		return addressLine2;
64
	}
65
 
66
	public void setAddressLine2(String addressLine2) {
67
		this.addressLine2 = addressLine2;
68
	}
69
 
70
	public String getPincode() {
71
		return pincode;
72
	}
73
 
74
	public void setPincode(String pincode) {
75
		this.pincode = pincode;
76
	}
77
 
78
	public String getCity() {
79
		return city;
80
	}
81
 
82
	public void setCity(String city) {
83
		this.city = city;
84
	}
85
 
86
	public String getState() {
87
		return state;
88
	}
89
 
90
	public void setState(String state) {
91
		this.state = state;
92
	}
93
 
94
	@Override
95
	public String toString() {
96
		return "DestinationDetails [name=" + name + ", phone=" + phone + ", alternatePhone=" + alternatePhone
97
				+ ", addressLine1=" + addressLine1 + ", addressLine2=" + addressLine2 + ", pincode=" + pincode
98
				+ ", city=" + city + ", state=" + state + "]";
99
	}
100
 
101
}