Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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 Shipper {
12
    @JsonProperty("CustomerAddress1")
13
    private String customerAddress1 = "";
14
 
15
    @JsonProperty("CustomerAddress2")
16
    private String customerAddress2 = "";
17
 
18
    @JsonProperty("CustomerAddress3")
19
    private String customerAddress3 = "";
20
 
21
    @JsonProperty("CustomerAddressinfo")
22
    private String customerAddressinfo = "";
23
 
24
    @JsonProperty("CustomerCode")
25
    private String customerCode = "";
26
 
27
    @JsonProperty("CustomerEmailID")
28
    private String customerEmailID = "";
29
 
30
    @JsonProperty("CustomerGSTNumber")
31
    private String customerGSTNumber = "";
32
 
33
    @JsonProperty("CustomerLatitude")
34
    private String customerLatitude = "";
35
 
36
    @JsonProperty("CustomerLongitude")
37
    private String customerLongitude = "";
38
 
39
    @JsonProperty("CustomerMaskedContactNumber")
40
    private String customerMaskedContactNumber = "";
41
 
42
    @JsonProperty("CustomerMobile")
43
    private String customerMobile = "";
44
 
45
    @JsonProperty("CustomerName")
46
    private String customerName = "";
47
 
48
    @JsonProperty("CustomerPincode")
49
    private String customerPincode = "";
50
 
51
    @JsonProperty("CustomerTelephone")
52
    private String customerTelephone = "";
53
 
54
    @JsonProperty("IsToPayCustomer")
55
    private boolean toPayCustomer;
56
 
57
    @JsonProperty("OriginArea")
58
    private String originArea = "";
59
 
60
    @JsonProperty("Sender")
61
    private String sender = "";
62
 
63
    @JsonProperty("VendorCode")
64
    private String vendorCode = "";
65
 
66
    public String getCustomerAddress1() {
67
        return customerAddress1;
68
    }
69
 
70
    public void setCustomerAddress1(String customerAddress1) {
71
        this.customerAddress1 = customerAddress1;
72
    }
73
 
74
    public String getCustomerAddress2() {
75
        return customerAddress2;
76
    }
77
 
78
    public void setCustomerAddress2(String customerAddress2) {
79
        this.customerAddress2 = customerAddress2;
80
    }
81
 
82
    public String getCustomerAddress3() {
83
        return customerAddress3;
84
    }
85
 
86
    public void setCustomerAddress3(String customerAddress3) {
87
        this.customerAddress3 = customerAddress3;
88
    }
89
 
90
    public String getCustomerAddressinfo() {
91
        return customerAddressinfo;
92
    }
93
 
94
    public void setCustomerAddressinfo(String customerAddressinfo) {
95
        this.customerAddressinfo = customerAddressinfo;
96
    }
97
 
98
    public String getCustomerCode() {
99
        return customerCode;
100
    }
101
 
102
    public void setCustomerCode(String customerCode) {
103
        this.customerCode = customerCode;
104
    }
105
 
106
    public String getCustomerEmailID() {
107
        return customerEmailID;
108
    }
109
 
110
    public void setCustomerEmailID(String customerEmailID) {
111
        this.customerEmailID = customerEmailID;
112
    }
113
 
114
    public String getCustomerGSTNumber() {
115
        return customerGSTNumber;
116
    }
117
 
118
    public void setCustomerGSTNumber(String customerGSTNumber) {
119
        this.customerGSTNumber = customerGSTNumber;
120
    }
121
 
122
    public String getCustomerLatitude() {
123
        return customerLatitude;
124
    }
125
 
126
    public void setCustomerLatitude(String customerLatitude) {
127
        this.customerLatitude = customerLatitude;
128
    }
129
 
130
    public String getCustomerLongitude() {
131
        return customerLongitude;
132
    }
133
 
134
    public void setCustomerLongitude(String customerLongitude) {
135
        this.customerLongitude = customerLongitude;
136
    }
137
 
138
    public String getCustomerMaskedContactNumber() {
139
        return customerMaskedContactNumber;
140
    }
141
 
142
    public void setCustomerMaskedContactNumber(String customerMaskedContactNumber) {
143
        this.customerMaskedContactNumber = customerMaskedContactNumber;
144
    }
145
 
146
    public String getCustomerMobile() {
147
        return customerMobile;
148
    }
149
 
150
    public void setCustomerMobile(String customerMobile) {
151
        this.customerMobile = customerMobile;
152
    }
153
 
154
    public String getCustomerName() {
155
        return customerName;
156
    }
157
 
158
    public void setCustomerName(String customerName) {
159
        this.customerName = customerName;
160
    }
161
 
162
    public String getCustomerPincode() {
163
        return customerPincode;
164
    }
165
 
166
    public void setCustomerPincode(String customerPincode) {
167
        this.customerPincode = customerPincode;
168
    }
169
 
170
    public String getCustomerTelephone() {
171
        return customerTelephone;
172
    }
173
 
174
    public void setCustomerTelephone(String customerTelephone) {
175
        this.customerTelephone = customerTelephone;
176
    }
177
 
178
    public boolean isToPayCustomer() {
179
        return toPayCustomer;
180
    }
181
 
182
    public void setToPayCustomer(boolean toPayCustomer) {
183
        toPayCustomer = toPayCustomer;
184
    }
185
 
186
    public String getOriginArea() {
187
        return originArea;
188
    }
189
 
190
    public void setOriginArea(String originArea) {
191
        this.originArea = originArea;
192
    }
193
 
194
    public String getSender() {
195
        return sender;
196
    }
197
 
198
    public void setSender(String sender) {
199
        this.sender = sender;
200
    }
201
 
202
    public String getVendorCode() {
203
        return vendorCode;
204
    }
205
 
206
    public void setVendorCode(String vendorCode) {
207
        this.vendorCode = vendorCode;
208
    }
209
 
210
    // Constructors, getters, and setters
211
}