Subversion Repositories SmartDukaan

Rev

Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.model;

import java.util.List;

public class ItemTypeParams {
        private List<Integer> catalogId;
        private List<String> brands;

        public ItemTypeParams(List<Integer> catalogId, List<String> brands) {
                super();
                this.catalogId = catalogId;
                this.brands = brands;
        }

        public ItemTypeParams() {
                super();
        }

        public List<Integer> getCatalogId() {
                return catalogId;
        }

        public void setCatalogId(List<Integer> catalogId) {
                this.catalogId = catalogId;
        }

        public List<String> getBrands() {
                return brands;
        }

        public void setBrands(List<String> brands) {
                this.brands = brands;
        }

        @Override
        public String toString() {
                return "ItemTypeParams [catalogId=" + catalogId + ", brands=" + brands + "]";
        }

}