Subversion Repositories SmartDukaan

Rev

Rev 7792 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4386 anupam.sin 1
package in.shop2020.support.models;
2
 
3
public class AwbDetails {
4
    private String awbNumber;
5
    private String awbDate;
6
    private String orderId;
7
    private String customerName;
8
    private String address1;
9
    private String address2;
10
    private String city;
11
    private String state;
12
    private String pinCode;
13
    private String phoneNumber;
14
    private String paymentMode;
15
    private String amountToCollect;
16
    private String shipmentValue;
17
    private String itemId;
18
    private String packetWeight;
19
    private String productName;
20
    private String pickupLocation;
21
    private String accountCode;
22
 
23
    public String getAwbNumber() {
24
        return awbNumber;
25
    }
26
    public void setAwbNumber(String awbNumber) {
27
        this.awbNumber = awbNumber;
28
    }
29
    public String getAwbDate() {
30
        return awbDate;
31
    }
32
    public void setAwbDate(String awbDate) {
33
        this.awbDate = awbDate;
34
    }
35
    public String getOrderId() {
36
        return orderId;
37
    }
38
    public void setOrderId(String orderId) {
39
        this.orderId = orderId;
40
    }
41
    public String getCustomerName() {
42
        return customerName;
43
    }
44
    public void setCustomerName(String customerName) {
45
        this.customerName = customerName;
46
    }
47
    public String getAddress1() {
48
        return address1;
49
    }
50
    public void setAddress1(String address1) {
51
        this.address1 = address1;
52
    }
53
    public String getAddress2() {
54
        return address2;
55
    }
56
    public void setAddress2(String address2) {
57
        this.address2 = address2;
58
    }
59
    public String getCity() {
60
        return city;
61
    }
62
    public void setCity(String city) {
63
        this.city = city;
64
    }
65
    public String getState() {
66
        return state;
67
    }
68
    public void setState(String state) {
69
        this.state = state;
70
    }
71
    public String getPinCode() {
72
        return pinCode;
73
    }
74
    public void setPinCode(String pinCode) {
75
        this.pinCode = pinCode;
76
    }
77
    public String getPhoneNumber() {
78
        return phoneNumber;
79
    }
80
    public void setPhoneNumber(String phoneNumber) {
81
        this.phoneNumber = phoneNumber;
82
    }
83
    public String getPaymentMode() {
84
        return paymentMode;
85
    }
86
    public void setPaymentMode(String paymentMode) {
87
        this.paymentMode = paymentMode;
88
    }
89
    public String getAmountToCollect() {
90
        return amountToCollect;
91
    }
92
    public void setAmountToCollect(String amountToCollect) {
93
        this.amountToCollect = amountToCollect;
94
    }
95
    public String getShipmentValue() {
96
        return shipmentValue;
97
    }
98
    public void setShipmentValue(String shipmentValue) {
99
        this.shipmentValue = shipmentValue;
100
    }
101
    public String getItemId() {
102
        return itemId;
103
    }
104
    public void setItemId(String itemId) {
105
        this.itemId = itemId;
106
    }
107
    public String getPacketWeight() {
108
        return packetWeight;
109
    }
110
    public void setPacketWeight(String packetWeight) {
111
        this.packetWeight = packetWeight;
112
    }
113
    public String getProductName() {
114
        return productName;
115
    }
116
    public void setProductName(String productName) {
117
        this.productName = productName;
118
    }
119
    public String getPickupLocation() {
120
        return pickupLocation;
121
    }
122
    public void setPickupLocation(String pickupLocation) {
123
        this.pickupLocation = pickupLocation;
124
    }
125
    public String getAccountCode() {
126
        return accountCode;
127
    }
128
    public void setAccountCode(String accountCode) {
129
        this.accountCode = accountCode;
130
    }
131
}