Subversion Repositories SmartDukaan

Rev

Rev 27026 | Rev 31773 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
26607 amit.gupta 1
package com.spice.profitmandi.dao.model;
21378 kshitij.so 2
 
27026 tejbeer 3
import java.time.LocalDateTime;
28653 amit.gupta 4
import java.util.List;
27026 tejbeer 5
 
26522 amit.gupta 6
import com.spice.profitmandi.dao.cart.CartItemMessage;
25880 amit.gupta 7
import com.spice.profitmandi.service.inventory.BulkPricing;
8
 
27026 tejbeer 9
public class CartItemResponseModel {
10
	private String imageUrl;
11
	private String dealText;
12
	private int itemId;
28653 amit.gupta 13
	private int maxQuantity;
27026 tejbeer 14
	private int estimate;
15
	private int quantityStep;
16
	private int packQuantity;
17
	private int minBuyQuantity;
18
	private BulkPricing[] bulkPricing;
19
	private String categoryName;
20
	private double sellingPrice;
21
	private String title;
28653 amit.gupta 22
	private List<CartItemMessage> cartItemMessages;
27026 tejbeer 23
	private String color;
24
	private long quantity;
25
	private long catalogItemId;
26
	private LocalDateTime promiseDelivery;
27
 
28
	public LocalDateTime getPromiseDelivery() {
29
		return promiseDelivery;
30
	}
31
 
32
	public void setPromiseDelivery(LocalDateTime promiseDelivery) {
33
		this.promiseDelivery = promiseDelivery;
34
	}
35
 
21380 kshitij.so 36
	public String getImageUrl() {
37
		return imageUrl;
38
	}
27026 tejbeer 39
 
21380 kshitij.so 40
	public void setImageUrl(String imageUrl) {
41
		this.imageUrl = imageUrl;
42
	}
27026 tejbeer 43
 
21380 kshitij.so 44
	public String getDealText() {
45
		return dealText;
46
	}
27026 tejbeer 47
 
21380 kshitij.so 48
	public void setDealText(String dealText) {
49
		this.dealText = dealText;
50
	}
27026 tejbeer 51
 
21380 kshitij.so 52
	public int getItemId() {
53
		return itemId;
54
	}
27026 tejbeer 55
 
21380 kshitij.so 56
	public void setItemId(int itemId) {
57
		this.itemId = itemId;
58
	}
27026 tejbeer 59
 
28653 amit.gupta 60
	public int getMaxQuantity() {
21380 kshitij.so 61
		return maxQuantity;
62
	}
27026 tejbeer 63
 
28653 amit.gupta 64
	public void setMaxQuantity(int maxQuantity) {
21380 kshitij.so 65
		this.maxQuantity = maxQuantity;
66
	}
27026 tejbeer 67
 
21380 kshitij.so 68
	public int getEstimate() {
69
		return estimate;
70
	}
27026 tejbeer 71
 
21380 kshitij.so 72
	public void setEstimate(int estimate) {
73
		this.estimate = estimate;
74
	}
27026 tejbeer 75
 
21380 kshitij.so 76
	public int getQuantityStep() {
77
		return quantityStep;
78
	}
27026 tejbeer 79
 
21380 kshitij.so 80
	public void setQuantityStep(int quantityStep) {
81
		this.quantityStep = quantityStep;
82
	}
27026 tejbeer 83
 
21380 kshitij.so 84
	public int getPackQuantity() {
85
		return packQuantity;
86
	}
27026 tejbeer 87
 
21380 kshitij.so 88
	public void setPackQuantity(int packQuantity) {
89
		this.packQuantity = packQuantity;
90
	}
27026 tejbeer 91
 
21380 kshitij.so 92
	public int getMinBuyQuantity() {
93
		return minBuyQuantity;
94
	}
27026 tejbeer 95
 
21380 kshitij.so 96
	public void setMinBuyQuantity(int minBuyQuantity) {
97
		this.minBuyQuantity = minBuyQuantity;
98
	}
27026 tejbeer 99
 
21380 kshitij.so 100
	public BulkPricing[] getBulkPricing() {
101
		return bulkPricing;
102
	}
27026 tejbeer 103
 
21380 kshitij.so 104
	public void setBulkPricing(BulkPricing[] bulkPricing) {
105
		this.bulkPricing = bulkPricing;
106
	}
27026 tejbeer 107
 
21380 kshitij.so 108
	public String getCategoryName() {
109
		return categoryName;
110
	}
27026 tejbeer 111
 
21380 kshitij.so 112
	public void setCategoryName(String categoryName) {
113
		this.categoryName = categoryName;
114
	}
27026 tejbeer 115
 
21380 kshitij.so 116
	public double getSellingPrice() {
117
		return sellingPrice;
118
	}
27026 tejbeer 119
 
21380 kshitij.so 120
	public void setSellingPrice(double sellingPrice) {
121
		this.sellingPrice = sellingPrice;
122
	}
27026 tejbeer 123
 
21380 kshitij.so 124
	public String getTitle() {
125
		return title;
126
	}
27026 tejbeer 127
 
21380 kshitij.so 128
	public void setTitle(String title) {
129
		this.title = title;
130
	}
27026 tejbeer 131
 
28653 amit.gupta 132
	public List<CartItemMessage> getCartItemMessages() {
21380 kshitij.so 133
		return cartItemMessages;
134
	}
27026 tejbeer 135
 
28653 amit.gupta 136
	public void setCartItemMessages(List<CartItemMessage> cartItemMessages) {
21380 kshitij.so 137
		this.cartItemMessages = cartItemMessages;
138
	}
27026 tejbeer 139
 
21380 kshitij.so 140
	public String getColor() {
141
		return color;
142
	}
27026 tejbeer 143
 
21380 kshitij.so 144
	public void setColor(String color) {
145
		this.color = color;
146
	}
27026 tejbeer 147
 
21380 kshitij.so 148
	public long getQuantity() {
149
		return quantity;
150
	}
27026 tejbeer 151
 
21380 kshitij.so 152
	public void setQuantity(long quantity) {
153
		this.quantity = quantity;
154
	}
27026 tejbeer 155
 
21380 kshitij.so 156
	public long getCatalogItemId() {
157
		return catalogItemId;
158
	}
27026 tejbeer 159
 
21380 kshitij.so 160
	public void setCatalogItemId(long catalogItemId) {
161
		this.catalogItemId = catalogItemId;
162
	}
21378 kshitij.so 163
 
164
}