Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21378 kshitij.so 1
package com.spice.profitmandi.web.res;
2
 
3
public class CartItems
4
{
5
    private String imageUrl;
6
    private String dealText;
7
    private int itemId;
23965 amit.gupta 8
    private long maxQuantity;
21378 kshitij.so 9
    private int estimate;
10
    private int quantityStep;
11
    private int packQuantity;
12
    private int minBuyQuantity;
13
    private BulkPricing[] bulkPricing;
14
    private String categoryName;
15
    private double sellingPrice;
16
    private String title;
17
    private CartItemMessages[] cartItemMessages;
18
    private String color;
19
    private long quantity;
20
    private long catalogItemId;
21380 kshitij.so 21
 
22
	public String getImageUrl() {
23
		return imageUrl;
24
	}
25
	public void setImageUrl(String imageUrl) {
26
		this.imageUrl = imageUrl;
27
	}
28
	public String getDealText() {
29
		return dealText;
30
	}
31
	public void setDealText(String dealText) {
32
		this.dealText = dealText;
33
	}
34
	public int getItemId() {
35
		return itemId;
36
	}
37
	public void setItemId(int itemId) {
38
		this.itemId = itemId;
39
	}
40
	public long getMaxQuantity() {
41
		return maxQuantity;
42
	}
43
	public void setMaxQuantity(long maxQuantity) {
44
		this.maxQuantity = maxQuantity;
45
	}
46
	public int getEstimate() {
47
		return estimate;
48
	}
49
	public void setEstimate(int estimate) {
50
		this.estimate = estimate;
51
	}
52
	public int getQuantityStep() {
53
		return quantityStep;
54
	}
55
	public void setQuantityStep(int quantityStep) {
56
		this.quantityStep = quantityStep;
57
	}
58
	public int getPackQuantity() {
59
		return packQuantity;
60
	}
61
	public void setPackQuantity(int packQuantity) {
62
		this.packQuantity = packQuantity;
63
	}
64
	public int getMinBuyQuantity() {
65
		return minBuyQuantity;
66
	}
67
	public void setMinBuyQuantity(int minBuyQuantity) {
68
		this.minBuyQuantity = minBuyQuantity;
69
	}
70
	public BulkPricing[] getBulkPricing() {
71
		return bulkPricing;
72
	}
73
	public void setBulkPricing(BulkPricing[] bulkPricing) {
74
		this.bulkPricing = bulkPricing;
75
	}
76
	public String getCategoryName() {
77
		return categoryName;
78
	}
79
	public void setCategoryName(String categoryName) {
80
		this.categoryName = categoryName;
81
	}
82
	public double getSellingPrice() {
83
		return sellingPrice;
84
	}
85
	public void setSellingPrice(double sellingPrice) {
86
		this.sellingPrice = sellingPrice;
87
	}
88
	public String getTitle() {
89
		return title;
90
	}
91
	public void setTitle(String title) {
92
		this.title = title;
93
	}
94
	public CartItemMessages[] getCartItemMessages() {
95
		return cartItemMessages;
96
	}
97
	public void setCartItemMessages(CartItemMessages[] cartItemMessages) {
98
		this.cartItemMessages = cartItemMessages;
99
	}
100
	public String getColor() {
101
		return color;
102
	}
103
	public void setColor(String color) {
104
		this.color = color;
105
	}
106
	public long getQuantity() {
107
		return quantity;
108
	}
109
	public void setQuantity(long quantity) {
110
		this.quantity = quantity;
111
	}
112
	public long getCatalogItemId() {
113
		return catalogItemId;
114
	}
115
	public void setCatalogItemId(long catalogItemId) {
116
		this.catalogItemId = catalogItemId;
117
	}
21378 kshitij.so 118
 
119
 
120
}