Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33683 ranu 1
package com.spice.profitmandi.dao.model;
2
 
3
public class PaymentLinkDetailModel {
4
 
5
    private String orderId;
6
    private String orderItemId;
7
    private String mobile;
8
    private String customerName;
9
    private String customerEmail;
10
    private String planName;
11
    private String planId;
12
    private String productDescription;
13
    private String amount;
14
    private String serialNumber;
15
 
16
    public String getMobile() {
17
        return mobile;
18
    }
19
 
20
    public void setMobile(String mobile) {
21
        this.mobile = mobile;
22
    }
23
 
24
    public String getPlanName() {
25
        return planName;
26
    }
27
 
28
    public void setPlanName(String planName) {
29
        this.planName = planName;
30
    }
31
 
32
    public String getProductDescription() {
33
        return productDescription;
34
    }
35
 
36
    public void setProductDescription(String productDescription) {
37
        this.productDescription = productDescription;
38
    }
39
 
40
    public String getAmount() {
41
        return amount;
42
    }
43
 
44
    public void setAmount(String amount) {
45
        this.amount = amount;
46
    }
47
 
48
    public String getCustomerName() {
49
        return customerName;
50
    }
51
 
52
    public void setCustomerName(String customerName) {
53
        this.customerName = customerName;
54
    }
55
 
56
    public String getCustomerEmail() {
57
        return customerEmail;
58
    }
59
 
60
    public void setCustomerEmail(String customerEmail) {
61
        this.customerEmail = customerEmail;
62
    }
63
 
64
    public String getOrderId() {
65
        return orderId;
66
    }
67
 
68
    public void setOrderId(String orderId) {
69
        this.orderId = orderId;
70
    }
71
 
72
    public String getPlanId() {
73
        return planId;
74
    }
75
 
76
    public void setPlanId(String planId) {
77
        this.planId = planId;
78
    }
79
 
80
    public String getOrderItemId() {
81
        return orderItemId;
82
    }
83
 
84
    public void setOrderItemId(String orderItemId) {
85
        this.orderItemId = orderItemId;
86
    }
87
 
88
    public String getSerialNumber() {
89
        return serialNumber;
90
    }
91
 
92
    public void setSerialNumber(String serialNumber) {
93
        this.serialNumber = serialNumber;
94
    }
95
 
96
    @Override
97
    public String toString() {
98
        return "PaymentLinkDetailModel{" +
99
                "orderId='" + orderId + '\'' +
100
                ", orderItemId='" + orderItemId + '\'' +
101
                ", mobile='" + mobile + '\'' +
102
                ", customerName='" + customerName + '\'' +
103
                ", customerEmail='" + customerEmail + '\'' +
104
                ", planName='" + planName + '\'' +
105
                ", planId='" + planId + '\'' +
106
                ", productDescription='" + productDescription + '\'' +
107
                ", amount='" + amount + '\'' +
108
                ", serialNumber='" + serialNumber + '\'' +
109
                '}';
110
    }
111
}
112
 
113