Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.catalog;


public class SuperCatalogModel {

    private int id;
    private int superCatalogId;
    private String superCatalogName;
    private int brandId;
    private String brandName;
    private int catalogId;
    private String catalogName;
    private String modelNumber;
    private String modelName;
    private String variantName;

    public SuperCatalogModel() { }

    public SuperCatalogModel(int id, int superCatalogId, String superCatalogName, int brandId, String brandName, int catalogId, String catalogName, String modelNumber, String modelName, String variantName) {
        this.id = id;
        this.superCatalogId = superCatalogId;
        this.superCatalogName = superCatalogName;
        this.brandId = brandId;
        this.brandName = brandName;
        this.catalogId = catalogId;
        this.catalogName = catalogName;
        this.modelNumber = modelNumber;
        this.modelName = modelName;
        this.variantName = variantName;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public int getSuperCatalogId() {
        return superCatalogId;
    }

    public void setSuperCatalogId(int superCatalogId) {
        this.superCatalogId = superCatalogId;
    }

    public String getSuperCatalogName() {
        return superCatalogName;
    }

    public void setSuperCatalogName(String superCatalogName) {
        this.superCatalogName = superCatalogName;
    }

    public int getBrandId() {
        return brandId;
    }

    public void setBrandId(int brandId) {
        this.brandId = brandId;
    }

    public String getBrandName() {
        return brandName;
    }

    public void setBrandName(String brandName) {
        this.brandName = brandName;
    }

    public int getCatalogId() {
        return catalogId;
    }

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

    public String getCatalogName() {
        return catalogName;
    }

    public void setCatalogId(String catalogName) {
        this.catalogName = catalogName;
    }

    public String getModelNumber() {
        return modelNumber;
    }

    public void setModelNumber(String modelNumber) {
        this.modelNumber = modelNumber;
    }

    public String getModelName() {
        return modelName;
    }

    public void setModelName(String modelName) {
        this.modelName = modelName;
    }

    public String getVariantName() {
        return variantName;
    }

    public void setVariantName(String variantName) {
        this.variantName = variantName;
    }

    @Override
    public String toString() {
        return "SuperCatalogModel{" +
                "id=" + id +
                ", superCatalogId='" + superCatalogId + '\'' +
                ", superCatalogName='" + superCatalogName + '\'' +
                ", brandId=" + brandId +
                ", brandName='" + brandName + '\'' +
                ", catalogId=" + catalogId +
                ", catalogName=" + catalogName +
                ", modelNumber='" + modelNumber + '\'' +
                ", modelName='" + modelName + '\'' +
                ", variantName='" + variantName + '\'' +
                '}';
    }
}