Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34813 aman 1
package com.spice.profitmandi.dao.model;
2
 
3
public class BrandCountByStatus {
4
 
5
    private int catalogId;
6
    private String brand;
7
    private int itemCount;
8
 
9
    public BrandCountByStatus(int catalogId, String brand, int itemCount) {
10
        this.catalogId = catalogId;
11
        this.brand = brand;
12
        this.itemCount = itemCount;
13
    }
14
 
15
    @Override
16
    public String toString() {
17
        return "BrandCountByStatus{" +
18
                "catalogId=" + catalogId +
19
                ", brand='" + brand + '\'' +
20
                ", itemCount=" + itemCount +
21
                '}';
22
    }
23
 
24
    public int getCatalogId() {
25
        return catalogId;
26
    }
27
 
28
    public void setCatalogId(int catalogId) {
29
        this.catalogId = catalogId;
30
    }
31
 
32
    public String getBrand() {
33
        return brand;
34
    }
35
 
36
    public void setBrand(String brand) {
37
        this.brand = brand;
38
    }
39
 
40
    public int getItemCount() {
41
        return itemCount;
42
    }
43
 
44
    public void setItemCount(int itemCount) {
45
        this.itemCount = itemCount;
46
    }
47
}