Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35652 vikas 1
package com.spice.profitmandi.dao.model;
2
 
3
import com.spice.profitmandi.dao.entity.fofo.CustomerAddress;
4
 
5
public class AddAmountToWalletModel {
6
    private String paymentMethod;
7
    private int orderId;
8
    private long orderAmount;
9
    private long customerId;
10
    private int customerAddressId;
11
    private CustomerAddress customerAddress;
12
    private long fofoId;
13
    private String paymentType;
14
 
15
    public AddAmountToWalletModel() {}
16
 
17
    public String getPaymentMethod() {
18
        return paymentMethod;
19
    }
20
 
21
    public void setPaymentMethod(String paymentMethod) {
22
        this.paymentMethod = paymentMethod;
23
    }
24
 
25
    public int getOrderId() {
26
        return orderId;
27
    }
28
 
29
    public void setOrderId(int orderId) {
30
        this.orderId = orderId;
31
    }
32
 
33
    public long getOrderAmount() {
34
        return orderAmount;
35
    }
36
 
37
    public void setOrderAmount(long orderAmount) {
38
        this.orderAmount = orderAmount;
39
    }
40
 
41
    public long getCustomerId() {
42
        return customerId;
43
    }
44
 
45
    public void setCustomerId(long customerId) {
46
        this.customerId = customerId;
47
    }
48
 
49
    public int getCustomerAddressId() {
50
        return customerAddressId;
51
    }
52
 
53
    public void setCustomerAddressId(int customerAddressId) {
54
        this.customerAddressId = customerAddressId;
55
    }
56
 
57
    public CustomerAddress getCustomerAddress() {
58
        return customerAddress;
59
    }
60
 
61
    public void setCustomerAddress(CustomerAddress customerAddress) {
62
        this.customerAddress = customerAddress;
63
    }
64
 
65
    public long getFofoId() {
66
        return fofoId;
67
    }
68
 
69
    public void setFofoId(long fofoId) {
70
        this.fofoId = fofoId;
71
    }
72
 
73
    public String getPaymentType() {
74
        return paymentType;
75
    }
76
 
77
    public void setPaymentType(String paymentType) {
78
        this.paymentType = paymentType;
79
    }
80
 
81
    @Override
82
    public String toString() {
83
        return "AddAmountToWalletModel{" +
84
                "paymentMethod='" + paymentMethod + '\'' +
85
                ", orderId=" + orderId +
86
                ", orderAmount=" + orderAmount +
87
                ", customerId=" + customerId +
88
                ", customerAddressId=" + customerAddressId +
89
                ", customerAddress=" + customerAddress +
90
                ", fofoId=" + fofoId +
91
                ", paymentType='" + paymentType + '\'' +
92
                '}';
93
    }
94
}