Subversion Repositories SmartDukaan

Rev

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