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