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
public class MappedComboModel {
4
 
5
	private int catalogId;
6
 
7
	private int qty;
8
 
9
	public int getCatalogId() {
10
		return catalogId;
11
	}
12
 
13
	public void setCatalogId(int catalogId) {
14
		this.catalogId = catalogId;
15
	}
16
 
17
	public int getQty() {
18
		return qty;
19
	}
20
 
21
	public void setQty(int qty) {
22
		this.qty = qty;
23
	}
24
 
25
}