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