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