Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
26588 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.util.List;
4
 
5
public class ItemTypeParams {
6
	private List<Integer> catalogId;
7
	private List<String> brands;
8
 
9
	public ItemTypeParams(List<Integer> catalogId, List<String> brands) {
10
		super();
11
		this.catalogId = catalogId;
12
		this.brands = brands;
13
	}
14
 
15
	public ItemTypeParams() {
16
		super();
17
	}
18
 
19
	public List<Integer> getCatalogId() {
20
		return catalogId;
21
	}
22
 
23
	public void setCatalogId(List<Integer> catalogId) {
24
		this.catalogId = catalogId;
25
	}
26
 
27
	public List<String> getBrands() {
28
		return brands;
29
	}
30
 
31
	public void setBrands(List<String> brands) {
32
		this.brands = brands;
33
	}
34
 
35
	@Override
36
	public String toString() {
37
		return "ItemTypeParams [catalogId=" + catalogId + ", brands=" + brands + "]";
38
	}
39
 
40
}