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