Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33973 tejus.loha 1
package com.spice.profitmandi.service.catalog;
2
 
3
 
4
public class SuperCatalogModel {
5
 
6
    private int id;
7
    private int superCatalogId;
8
    private String superCatalogName;
9
    private int brandId;
10
    private String brandName;
11
    private int catalogId;
12
    private String catalogName;
13
    private String modelNumber;
14
    private String modelName;
15
    private String variantName;
16
 
17
    public SuperCatalogModel() { }
18
 
19
    public SuperCatalogModel(int id, int superCatalogId, String superCatalogName, int brandId, String brandName, int catalogId, String catalogName, String modelNumber, String modelName, String variantName) {
20
        this.id = id;
21
        this.superCatalogId = superCatalogId;
22
        this.superCatalogName = superCatalogName;
23
        this.brandId = brandId;
24
        this.brandName = brandName;
25
        this.catalogId = catalogId;
26
        this.catalogName = catalogName;
27
        this.modelNumber = modelNumber;
28
        this.modelName = modelName;
29
        this.variantName = variantName;
30
    }
31
 
32
    public int getId() {
33
        return id;
34
    }
35
 
36
    public void setId(int id) {
37
        this.id = id;
38
    }
39
 
40
    public int getSuperCatalogId() {
41
        return superCatalogId;
42
    }
43
 
44
    public void setSuperCatalogId(int superCatalogId) {
45
        this.superCatalogId = superCatalogId;
46
    }
47
 
48
    public String getSuperCatalogName() {
49
        return superCatalogName;
50
    }
51
 
52
    public void setSuperCatalogName(String superCatalogName) {
53
        this.superCatalogName = superCatalogName;
54
    }
55
 
56
    public int getBrandId() {
57
        return brandId;
58
    }
59
 
60
    public void setBrandId(int brandId) {
61
        this.brandId = brandId;
62
    }
63
 
64
    public String getBrandName() {
65
        return brandName;
66
    }
67
 
68
    public void setBrandName(String brandName) {
69
        this.brandName = brandName;
70
    }
71
 
72
    public int getCatalogId() {
73
        return catalogId;
74
    }
75
 
76
    public void setCatalogId(int catalogId) {
77
        this.catalogId = catalogId;
78
    }
79
 
80
    public String getCatalogName() {
81
        return catalogName;
82
    }
83
 
84
    public void setCatalogId(String catalogName) {
85
        this.catalogName = catalogName;
86
    }
87
 
88
    public String getModelNumber() {
89
        return modelNumber;
90
    }
91
 
92
    public void setModelNumber(String modelNumber) {
93
        this.modelNumber = modelNumber;
94
    }
95
 
96
    public String getModelName() {
97
        return modelName;
98
    }
99
 
100
    public void setModelName(String modelName) {
101
        this.modelName = modelName;
102
    }
103
 
104
    public String getVariantName() {
105
        return variantName;
106
    }
107
 
108
    public void setVariantName(String variantName) {
109
        this.variantName = variantName;
110
    }
111
 
112
    @Override
113
    public String toString() {
114
        return "SuperCatalogModel{" +
115
                "id=" + id +
116
                ", superCatalogId='" + superCatalogId + '\'' +
117
                ", superCatalogName='" + superCatalogName + '\'' +
118
                ", brandId=" + brandId +
119
                ", brandName='" + brandName + '\'' +
120
                ", catalogId=" + catalogId +
121
                ", catalogName=" + catalogName +
122
                ", modelNumber='" + modelNumber + '\'' +
123
                ", modelName='" + modelName + '\'' +
124
                ", variantName='" + variantName + '\'' +
125
                '}';
126
    }
127
}