Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21390 ashik.ali 1
 
2
package com.spice.profitmandi.web.req;
3
 
4
import java.util.List;
5
 
6
public class CreateRetailerRequestModel {
7
 
8
    private String name;
9
    private String number;
10
    private String type;
11
    private String monthlySaleValue;
12
    private String smartphoneSaleValue;
13
    private List<String> brandNames = null;
14
    private Boolean recharge;
15
    private Boolean mobile;
16
    private Boolean accessories;
17
    private Boolean other1;
18
    private Boolean other2;
19
    private String documentId;
20
    private Shop shop;
21
    private Address address;
22
 
23
    public String getName() {
24
        return name;
25
    }
26
 
27
    public void setName(String name) {
28
        this.name = name;
29
    }
30
 
31
    public String getNumber() {
32
        return number;
33
    }
34
 
35
    public void setNumber(String number) {
36
        this.number = number;
37
    }
38
 
39
    public String getType() {
40
        return type;
41
    }
42
 
43
    public void setType(String type) {
44
        this.type = type;
45
    }
46
 
47
    public String getMonthlySaleValue() {
48
        return monthlySaleValue;
49
    }
50
 
51
    public void setMonthlySaleValue(String monthlySaleValue) {
52
        this.monthlySaleValue = monthlySaleValue;
53
    }
54
 
55
    public String getSmartphoneSaleValue() {
56
        return smartphoneSaleValue;
57
    }
58
 
59
    public void setSmartphoneSaleValue(String smartphoneSaleValue) {
60
        this.smartphoneSaleValue = smartphoneSaleValue;
61
    }
62
 
63
    public List<String> getBrandNames() {
64
        return brandNames;
65
    }
66
 
67
    public void setBrandNames(List<String> brandNames) {
68
        this.brandNames = brandNames;
69
    }
70
 
71
    public Boolean getRecharge() {
72
        return recharge;
73
    }
74
 
75
    public void setRecharge(Boolean recharge) {
76
        this.recharge = recharge;
77
    }
78
 
79
    public Boolean getMobile() {
80
        return mobile;
81
    }
82
 
83
    public void setMobile(Boolean mobile) {
84
        this.mobile = mobile;
85
    }
86
 
87
    public Boolean getAccessories() {
88
        return accessories;
89
    }
90
 
91
    public void setAccessories(Boolean accessories) {
92
        this.accessories = accessories;
93
    }
94
 
95
    public Boolean getOther1() {
96
        return other1;
97
    }
98
 
99
    public void setOther1(Boolean other1) {
100
        this.other1 = other1;
101
    }
102
 
103
    public Boolean getOther2() {
104
        return other2;
105
    }
106
 
107
    public void setOther2(Boolean other2) {
108
        this.other2 = other2;
109
    }
110
 
111
    public String getDocumentId() {
112
        return documentId;
113
    }
114
 
115
    public void setDocumentId(String documentId) {
116
        this.documentId = documentId;
117
    }
118
 
119
    public Shop getShop() {
120
        return shop;
121
    }
122
 
123
    public void setShop(Shop shop) {
124
        this.shop = shop;
125
    }
126
 
127
    public Address getAddress() {
128
        return address;
129
    }
130
 
131
    public void setAddress(Address address) {
132
        this.address = address;
133
    }
134
 
135
}