Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21378 kshitij.so 1
package com.spice.profitmandi.web.req;
2
 
3
public class CartItems
4
{	
5
    private long quantity;
6
	private int itemId;
7
 
8
    public long getQuantity() {
9
		return quantity;
10
	}
11
 
12
	public void setQuantity(long quantity) {
13
		this.quantity = quantity;
14
	}
15
 
16
	public int getItemId() {
17
		return itemId;
18
	}
19
 
20
	public void setItemId(int itemId) {
21
		this.itemId = itemId;
22
	}
23
 
24
	@Override
25
	public String toString() {
26
		return "CartItems [quantity=" + quantity + ", itemId=" + itemId + "]";
27
	}
28
 
29
}