Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21986 kshitij.so 1
package com.spice.profitmandi.common.model;
2
 
24264 amit.gupta 3
import com.spice.profitmandi.common.enumuration.ItemType;
21986 kshitij.so 4
 
5
public class CartFofo {
6
	private int itemId;
7
	private int quantity;
8
	private int availability;
9
	private String displayName;
10
	private String iconUrl;
11
	private String message;
12
	private ItemType itemType;
28339 tejbeer 13
	private int poId;
14
	private int poItemId;
15
 
16
	public int getPoId() {
17
		return poId;
18
	}
19
 
20
	public void setPoId(int poId) {
21
		this.poId = poId;
22
	}
23
 
24
	public int getPoItemId() {
25
		return poItemId;
26
	}
27
 
28
	public void setPoItemId(int poItemId) {
29
		this.poItemId = poItemId;
30
	}
31
 
21986 kshitij.so 32
	public ItemType getItemType() {
33
		return itemType;
34
	}
28339 tejbeer 35
 
21986 kshitij.so 36
	public void setItemType(ItemType itemType) {
37
		this.itemType = itemType;
38
	}
28339 tejbeer 39
 
21986 kshitij.so 40
	@Override
41
	public String toString() {
42
		return "CartFofo [itemId=" + itemId + ", quantity=" + quantity + ", availability=" + availability
43
				+ ", displayName=" + displayName + ", iconUrl=" + iconUrl + ", message=" + message + ", itemType="
44
				+ itemType + "]";
45
	}
28339 tejbeer 46
 
21986 kshitij.so 47
	public int getItemId() {
48
		return itemId;
49
	}
28339 tejbeer 50
 
21986 kshitij.so 51
	public void setItemId(int itemId) {
52
		this.itemId = itemId;
53
	}
28339 tejbeer 54
 
21986 kshitij.so 55
	public int getQuantity() {
56
		return quantity;
57
	}
28339 tejbeer 58
 
21986 kshitij.so 59
	public void setQuantity(int quantity) {
60
		this.quantity = quantity;
61
	}
28339 tejbeer 62
 
21986 kshitij.so 63
	public int getAvailability() {
64
		return availability;
65
	}
28339 tejbeer 66
 
21986 kshitij.so 67
	public void setAvailability(int availability) {
68
		this.availability = availability;
69
	}
28339 tejbeer 70
 
21986 kshitij.so 71
	public String getDisplayName() {
72
		return displayName;
73
	}
28339 tejbeer 74
 
21986 kshitij.so 75
	public void setDisplayName(String displayName) {
76
		this.displayName = displayName;
77
	}
28339 tejbeer 78
 
21986 kshitij.so 79
	public String getIconUrl() {
80
		return iconUrl;
81
	}
28339 tejbeer 82
 
21986 kshitij.so 83
	public void setIconUrl(String iconUrl) {
84
		this.iconUrl = iconUrl;
85
	}
28339 tejbeer 86
 
21986 kshitij.so 87
	public String getMessage() {
88
		return message;
89
	}
28339 tejbeer 90
 
21986 kshitij.so 91
	public void setMessage(String message) {
92
		this.message = message;
93
	}
94
}