| 36376 |
aman |
1 |
package com.spice.profitmandi.dao.cart.v2;
|
|
|
2 |
|
|
|
3 |
import java.time.LocalDateTime;
|
|
|
4 |
|
|
|
5 |
public class LiveInventory {
|
|
|
6 |
|
|
|
7 |
private int available;
|
|
|
8 |
private int maxOrderQty;
|
|
|
9 |
private int estimateDays;
|
|
|
10 |
private LocalDateTime promiseDate;
|
|
|
11 |
private Integer warehouseId;
|
|
|
12 |
private boolean serviceable;
|
|
|
13 |
private String serviceabilityMessage;
|
|
|
14 |
|
|
|
15 |
public LiveInventory() {}
|
|
|
16 |
|
|
|
17 |
public int getAvailable() { return available; }
|
|
|
18 |
public void setAvailable(int available) { this.available = available; }
|
|
|
19 |
|
|
|
20 |
public int getMaxOrderQty() { return maxOrderQty; }
|
|
|
21 |
public void setMaxOrderQty(int maxOrderQty) { this.maxOrderQty = maxOrderQty; }
|
|
|
22 |
|
|
|
23 |
public int getEstimateDays() { return estimateDays; }
|
|
|
24 |
public void setEstimateDays(int estimateDays) { this.estimateDays = estimateDays; }
|
|
|
25 |
|
|
|
26 |
public LocalDateTime getPromiseDate() { return promiseDate; }
|
|
|
27 |
public void setPromiseDate(LocalDateTime promiseDate) { this.promiseDate = promiseDate; }
|
|
|
28 |
|
|
|
29 |
public Integer getWarehouseId() { return warehouseId; }
|
|
|
30 |
public void setWarehouseId(Integer warehouseId) { this.warehouseId = warehouseId; }
|
|
|
31 |
|
|
|
32 |
public boolean isServiceable() { return serviceable; }
|
|
|
33 |
public void setServiceable(boolean serviceable) { this.serviceable = serviceable; }
|
|
|
34 |
|
|
|
35 |
public String getServiceabilityMessage() { return serviceabilityMessage; }
|
|
|
36 |
public void setServiceabilityMessage(String serviceabilityMessage) { this.serviceabilityMessage = serviceabilityMessage; }
|
|
|
37 |
}
|