Subversion Repositories SmartDukaan

Rev

Rev 26607 | Rev 28653 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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