Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
30683 tejbeer 1
package com.spice.profitmandi.service.inventory;
2
 
3
import java.util.List;
4
 
5
public class Combo {
6
 
7
	private int catalogId;
8
 
9
	private int qty;
10
 
11
	private List<Integer> warehouseId;
12
 
13
	private List<MappedComboModel> mappedComboModel;
14
 
15
	public int getCatalogId() {
16
		return catalogId;
17
	}
18
 
19
	public void setCatalogId(int catalogId) {
20
		this.catalogId = catalogId;
21
	}
22
 
23
	public List<MappedComboModel> getMappedComboModel() {
24
		return mappedComboModel;
25
	}
26
 
27
	public void setMappedComboModel(List<MappedComboModel> mappedComboModel) {
28
		this.mappedComboModel = mappedComboModel;
29
	}
30
 
31
	public int getQty() {
32
		return qty;
33
	}
34
 
35
	public void setQty(int qty) {
36
		this.qty = qty;
37
	}
38
 
39
	public List<Integer> getWarehouseId() {
40
		return warehouseId;
41
	}
42
 
43
	public void setWarehouseId(List<Integer> warehouseId) {
44
		this.warehouseId = warehouseId;
45
	}
46
 
47
}