Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34814 vikas 1
package com.spice.profitmandi.service.catalog;
2
 
3
public class CategoryModel {
4
    private int id;
5
    private long parentCategoryId;
6
    private String label;
7
    private String description;
8
    private String displayName;
9
    private long imageId;
10
    private boolean status;
11
    private boolean featured;
12
 
13
    public int getId() {
14
        return id;
15
    }
16
 
17
    public void setId(int id) {
18
        this.id = id;
19
    }
20
 
21
    public long getParentCategoryId() {
22
        return parentCategoryId;
23
    }
24
 
25
    public void setParentCategoryId(long parentCategoryId) {
26
        this.parentCategoryId = parentCategoryId;
27
    }
28
 
29
    public String getLabel() {
30
        return label;
31
    }
32
 
33
    public void setLabel(String label) {
34
        this.label = label;
35
    }
36
 
37
    public String getDescription() {
38
        return description;
39
    }
40
 
41
    public void setDescription(String description) {
42
        this.description = description;
43
    }
44
 
45
    public String getDisplayName() {
46
        return displayName;
47
    }
48
 
49
    public void setDisplayName(String displayName) {
50
        this.displayName = displayName;
51
    }
52
 
53
    public long getImageId() {
54
        return imageId;
55
    }
56
 
57
    public void setImageId(long imageId) {
58
        this.imageId = imageId;
59
    }
60
 
61
    public boolean isStatus() {
62
        return status;
63
    }
64
 
65
    public void setStatus(boolean status) {
66
        this.status = status;
67
    }
68
 
69
    public boolean isFeatured() {
70
        return featured;
71
    }
72
 
73
    public void setFeatured(boolean featured) {
74
        this.featured = featured;
75
    }
76
 
77
    @Override
78
    public String toString() {
79
        return "CategoryModel{" +
80
                "id=" + id +
81
                ", parentCategoryId=" + parentCategoryId +
82
                ", label='" + label + '\'' +
83
                ", description='" + description + '\'' +
84
                ", displayName='" + displayName + '\'' +
85
                ", imageId=" + imageId +
86
                ", status=" + status +
87
                '}';
88
    }
89
}