Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.model;

public class BrandCountByStatus {

    private int catalogId;
    private String brand;
    private int itemCount;

    public BrandCountByStatus(int catalogId, String brand, int itemCount) {
        this.catalogId = catalogId;
        this.brand = brand;
        this.itemCount = itemCount;
    }

    @Override
    public String toString() {
        return "BrandCountByStatus{" +
                "catalogId=" + catalogId +
                ", brand='" + brand + '\'' +
                ", itemCount=" + itemCount +
                '}';
    }

    public int getCatalogId() {
        return catalogId;
    }

    public void setCatalogId(int catalogId) {
        this.catalogId = catalogId;
    }

    public String getBrand() {
        return brand;
    }

    public void setBrand(String brand) {
        this.brand = brand;
    }

    public int getItemCount() {
        return itemCount;
    }

    public void setItemCount(int itemCount) {
        this.itemCount = itemCount;
    }
}