Subversion Repositories SmartDukaan

Rev

Rev 21633 | Rev 21924 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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