Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21633 ashik.ali 1
package com.spice.profitmandi.dao.model;
2
 
3
public class ItemIdTypeQuantity {
4
	private int itemId;
5
	private String type;
6
	private int quantity;
7
 
8
	public ItemIdTypeQuantity(int itemId, String type, int quantity){
9
		this.itemId = itemId;
10
		this.type = type;
11
		this.quantity = quantity;
12
	}
13
 
14
	public int getItemId() {
15
		return itemId;
16
	}
17
	public void setItemId(int itemId) {
18
		this.itemId = itemId;
19
	}
20
	public int getQuantity() {
21
		return quantity;
22
	}
23
	public void setQuantity(int quantity) {
24
		this.quantity = quantity;
25
	}
26
	public String getType() {
27
		return type;
28
	}
29
	public void setType(String type) {
30
		this.type = type;
31
	}
32
}