| 37080 |
amit |
1 |
package com.spice.profitmandi.dao.service.biuedart;
|
|
|
2 |
|
|
|
3 |
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
4 |
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
5 |
|
|
|
6 |
import java.time.LocalDate;
|
|
|
7 |
import java.util.ArrayList;
|
|
|
8 |
import java.util.Date;
|
|
|
9 |
import java.util.List;
|
|
|
10 |
|
|
|
11 |
class Consignee {
|
|
|
12 |
@JsonProperty("AvailableDays")
|
|
|
13 |
private String availableDays = "";
|
|
|
14 |
|
|
|
15 |
@JsonProperty("AvailableTiming")
|
|
|
16 |
private String availableTiming = "";
|
|
|
17 |
|
|
|
18 |
@JsonProperty("ConsigneeAddress1")
|
|
|
19 |
private String consigneeAddress1 = "";
|
|
|
20 |
|
|
|
21 |
@JsonProperty("ConsigneeAddress2")
|
|
|
22 |
private String consigneeAddress2 = "";
|
|
|
23 |
|
|
|
24 |
@JsonProperty("ConsigneeAddress3")
|
|
|
25 |
private String consigneeAddress3 = "";
|
|
|
26 |
|
|
|
27 |
@JsonProperty("ConsigneeAddressType")
|
|
|
28 |
private String consigneeAddressType = "";
|
|
|
29 |
|
|
|
30 |
@JsonProperty("ConsigneeAddressinfo")
|
|
|
31 |
private String consigneeAddressinfo = "";
|
|
|
32 |
|
|
|
33 |
@JsonProperty("ConsigneeAttention")
|
|
|
34 |
private String consigneeAttention = "";
|
|
|
35 |
|
|
|
36 |
@JsonProperty("ConsigneeEmailID")
|
|
|
37 |
private String consigneeEmailID = "";
|
|
|
38 |
|
|
|
39 |
@JsonProperty("ConsigneeFullAddress")
|
|
|
40 |
private String consigneeFullAddress = "";
|
|
|
41 |
|
|
|
42 |
@JsonProperty("ConsigneeGSTNumber")
|
|
|
43 |
private String consigneeGSTNumber = "";
|
|
|
44 |
|
|
|
45 |
@JsonProperty("ConsigneeLatitude")
|
|
|
46 |
private String consigneeLatitude = "";
|
|
|
47 |
|
|
|
48 |
@JsonProperty("ConsigneeLongitude")
|
|
|
49 |
private String consigneeLongitude = "";
|
|
|
50 |
|
|
|
51 |
@JsonProperty("ConsigneeMaskedContactNumber")
|
|
|
52 |
private String consigneeMaskedContactNumber = "";
|
|
|
53 |
|
|
|
54 |
@JsonProperty("ConsigneeMobile")
|
|
|
55 |
private String consigneeMobile = "";
|
|
|
56 |
|
|
|
57 |
@JsonProperty("ConsigneeName")
|
|
|
58 |
private String consigneeName = "";
|
|
|
59 |
|
|
|
60 |
@JsonProperty("ConsigneePincode")
|
|
|
61 |
private String consigneePincode = "";
|
|
|
62 |
|
|
|
63 |
@JsonProperty("ConsigneeTelephone")
|
|
|
64 |
private String consigneeTelephone = "";
|
|
|
65 |
|
|
|
66 |
public String getAvailableDays() {
|
|
|
67 |
return availableDays;
|
|
|
68 |
}
|
|
|
69 |
|
|
|
70 |
public void setAvailableDays(String availableDays) {
|
|
|
71 |
this.availableDays = availableDays;
|
|
|
72 |
}
|
|
|
73 |
|
|
|
74 |
public String getAvailableTiming() {
|
|
|
75 |
return availableTiming;
|
|
|
76 |
}
|
|
|
77 |
|
|
|
78 |
public void setAvailableTiming(String availableTiming) {
|
|
|
79 |
this.availableTiming = availableTiming;
|
|
|
80 |
}
|
|
|
81 |
|
|
|
82 |
public String getConsigneeAddress1() {
|
|
|
83 |
return consigneeAddress1;
|
|
|
84 |
}
|
|
|
85 |
|
|
|
86 |
public void setConsigneeAddress1(String consigneeAddress1) {
|
|
|
87 |
this.consigneeAddress1 = consigneeAddress1;
|
|
|
88 |
}
|
|
|
89 |
|
|
|
90 |
public String getConsigneeAddress2() {
|
|
|
91 |
return consigneeAddress2;
|
|
|
92 |
}
|
|
|
93 |
|
|
|
94 |
public void setConsigneeAddress2(String consigneeAddress2) {
|
|
|
95 |
this.consigneeAddress2 = consigneeAddress2;
|
|
|
96 |
}
|
|
|
97 |
|
|
|
98 |
public String getConsigneeAddress3() {
|
|
|
99 |
return consigneeAddress3;
|
|
|
100 |
}
|
|
|
101 |
|
|
|
102 |
public void setConsigneeAddress3(String consigneeAddress3) {
|
|
|
103 |
this.consigneeAddress3 = consigneeAddress3;
|
|
|
104 |
}
|
|
|
105 |
|
|
|
106 |
public String getConsigneeAddressType() {
|
|
|
107 |
return consigneeAddressType;
|
|
|
108 |
}
|
|
|
109 |
|
|
|
110 |
public void setConsigneeAddressType(String consigneeAddressType) {
|
|
|
111 |
this.consigneeAddressType = consigneeAddressType;
|
|
|
112 |
}
|
|
|
113 |
|
|
|
114 |
public String getConsigneeAddressinfo() {
|
|
|
115 |
return consigneeAddressinfo;
|
|
|
116 |
}
|
|
|
117 |
|
|
|
118 |
public void setConsigneeAddressinfo(String consigneeAddressinfo) {
|
|
|
119 |
this.consigneeAddressinfo = consigneeAddressinfo;
|
|
|
120 |
}
|
|
|
121 |
|
|
|
122 |
public String getConsigneeAttention() {
|
|
|
123 |
return consigneeAttention;
|
|
|
124 |
}
|
|
|
125 |
|
|
|
126 |
public void setConsigneeAttention(String consigneeAttention) {
|
|
|
127 |
this.consigneeAttention = consigneeAttention;
|
|
|
128 |
}
|
|
|
129 |
|
|
|
130 |
public String getConsigneeEmailID() {
|
|
|
131 |
return consigneeEmailID;
|
|
|
132 |
}
|
|
|
133 |
|
|
|
134 |
public void setConsigneeEmailID(String consigneeEmailID) {
|
|
|
135 |
this.consigneeEmailID = consigneeEmailID;
|
|
|
136 |
}
|
|
|
137 |
|
|
|
138 |
public String getConsigneeFullAddress() {
|
|
|
139 |
return consigneeFullAddress;
|
|
|
140 |
}
|
|
|
141 |
|
|
|
142 |
public void setConsigneeFullAddress(String consigneeFullAddress) {
|
|
|
143 |
this.consigneeFullAddress = consigneeFullAddress;
|
|
|
144 |
}
|
|
|
145 |
|
|
|
146 |
public String getConsigneeGSTNumber() {
|
|
|
147 |
return consigneeGSTNumber;
|
|
|
148 |
}
|
|
|
149 |
|
|
|
150 |
public void setConsigneeGSTNumber(String consigneeGSTNumber) {
|
|
|
151 |
this.consigneeGSTNumber = consigneeGSTNumber;
|
|
|
152 |
}
|
|
|
153 |
|
|
|
154 |
public String getConsigneeLatitude() {
|
|
|
155 |
return consigneeLatitude;
|
|
|
156 |
}
|
|
|
157 |
|
|
|
158 |
public void setConsigneeLatitude(String consigneeLatitude) {
|
|
|
159 |
this.consigneeLatitude = consigneeLatitude;
|
|
|
160 |
}
|
|
|
161 |
|
|
|
162 |
public String getConsigneeLongitude() {
|
|
|
163 |
return consigneeLongitude;
|
|
|
164 |
}
|
|
|
165 |
|
|
|
166 |
public void setConsigneeLongitude(String consigneeLongitude) {
|
|
|
167 |
this.consigneeLongitude = consigneeLongitude;
|
|
|
168 |
}
|
|
|
169 |
|
|
|
170 |
public String getConsigneeMaskedContactNumber() {
|
|
|
171 |
return consigneeMaskedContactNumber;
|
|
|
172 |
}
|
|
|
173 |
|
|
|
174 |
public void setConsigneeMaskedContactNumber(String consigneeMaskedContactNumber) {
|
|
|
175 |
this.consigneeMaskedContactNumber = consigneeMaskedContactNumber;
|
|
|
176 |
}
|
|
|
177 |
|
|
|
178 |
public String getConsigneeMobile() {
|
|
|
179 |
return consigneeMobile;
|
|
|
180 |
}
|
|
|
181 |
|
|
|
182 |
public void setConsigneeMobile(String consigneeMobile) {
|
|
|
183 |
this.consigneeMobile = consigneeMobile;
|
|
|
184 |
}
|
|
|
185 |
|
|
|
186 |
public String getConsigneeName() {
|
|
|
187 |
return consigneeName;
|
|
|
188 |
}
|
|
|
189 |
|
|
|
190 |
public void setConsigneeName(String consigneeName) {
|
|
|
191 |
this.consigneeName = consigneeName;
|
|
|
192 |
}
|
|
|
193 |
|
|
|
194 |
public String getConsigneePincode() {
|
|
|
195 |
return consigneePincode;
|
|
|
196 |
}
|
|
|
197 |
|
|
|
198 |
public void setConsigneePincode(String consigneePincode) {
|
|
|
199 |
this.consigneePincode = consigneePincode;
|
|
|
200 |
}
|
|
|
201 |
|
|
|
202 |
public String getConsigneeTelephone() {
|
|
|
203 |
return consigneeTelephone;
|
|
|
204 |
}
|
|
|
205 |
|
|
|
206 |
public void setConsigneeTelephone(String consigneeTelephone) {
|
|
|
207 |
this.consigneeTelephone = consigneeTelephone;
|
|
|
208 |
}
|
|
|
209 |
|
|
|
210 |
// Constructors, getters, and setters
|
|
|
211 |
}
|