| 36376 |
aman |
1 |
package com.spice.profitmandi.dao.cart.v2;
|
|
|
2 |
|
|
|
3 |
public class LineReservation {
|
|
|
4 |
|
|
|
5 |
private int lineId;
|
|
|
6 |
private int productId;
|
|
|
7 |
private int quantity;
|
|
|
8 |
private Integer warehouseId;
|
|
|
9 |
|
|
|
10 |
public LineReservation() {}
|
|
|
11 |
|
|
|
12 |
public LineReservation(int lineId, int productId, int quantity, Integer warehouseId) {
|
|
|
13 |
this.lineId = lineId;
|
|
|
14 |
this.productId = productId;
|
|
|
15 |
this.quantity = quantity;
|
|
|
16 |
this.warehouseId = warehouseId;
|
|
|
17 |
}
|
|
|
18 |
|
|
|
19 |
public int getLineId() { return lineId; }
|
|
|
20 |
public void setLineId(int lineId) { this.lineId = lineId; }
|
|
|
21 |
|
|
|
22 |
public int getProductId() { return productId; }
|
|
|
23 |
public void setProductId(int productId) { this.productId = productId; }
|
|
|
24 |
|
|
|
25 |
public int getQuantity() { return quantity; }
|
|
|
26 |
public void setQuantity(int quantity) { this.quantity = quantity; }
|
|
|
27 |
|
|
|
28 |
public Integer getWarehouseId() { return warehouseId; }
|
|
|
29 |
public void setWarehouseId(Integer warehouseId) { this.warehouseId = warehouseId; }
|
|
|
30 |
}
|