Subversion Repositories SmartDukaan

Rev

Rev 30683 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30683 tejbeer 1
package com.spice.profitmandi.service.inventory;
2
 
3
public class MappedComboModel {
4
 
5
	private int catalogId;
6
	private int qty;
7
 
8
	public int getCatalogId() {
9
		return catalogId;
10
	}
11
 
12
	public void setCatalogId(int catalogId) {
13
		this.catalogId = catalogId;
14
	}
15
 
16
	public int getQty() {
17
		return qty;
18
	}
19
 
20
	public void setQty(int qty) {
21
		this.qty = qty;
22
	}
23
 
24
}