Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.cart.v2;

public class LineReservation {

        private int lineId;
        private int productId;
        private int quantity;
        private Integer warehouseId;

        public LineReservation() {}

        public LineReservation(int lineId, int productId, int quantity, Integer warehouseId) {
                this.lineId = lineId;
                this.productId = productId;
                this.quantity = quantity;
                this.warehouseId = warehouseId;
        }

        public int getLineId() { return lineId; }
        public void setLineId(int lineId) { this.lineId = lineId; }

        public int getProductId() { return productId; }
        public void setProductId(int productId) { this.productId = productId; }

        public int getQuantity() { return quantity; }
        public void setQuantity(int quantity) { this.quantity = quantity; }

        public Integer getWarehouseId() { return warehouseId; }
        public void setWarehouseId(Integer warehouseId) { this.warehouseId = warehouseId; }
}