Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

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

import java.math.BigDecimal;

public class HydratedLine {

        private int lineId;
        private int productId;
        private Integer variantId;
        private int quantity;
        private int minBuyQuantity;
        private int quantityStep;
        private Long sellerId;
        private LineStatus status;
        private LivePrice price;
        private LiveInventory inventory;
        private TaxBreakup tax;
        private CartContent content;
        private BigDecimal lastSeenPrice;
        private InsuranceBinding insurance;

        public HydratedLine() {}

        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 Integer getVariantId() { return variantId; }
        public void setVariantId(Integer variantId) { this.variantId = variantId; }

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

        public int getMinBuyQuantity() { return minBuyQuantity; }
        public void setMinBuyQuantity(int minBuyQuantity) { this.minBuyQuantity = minBuyQuantity; }

        public int getQuantityStep() { return quantityStep; }
        public void setQuantityStep(int quantityStep) { this.quantityStep = quantityStep; }

        public Long getSellerId() { return sellerId; }
        public void setSellerId(Long sellerId) { this.sellerId = sellerId; }

        public LineStatus getStatus() { return status; }
        public void setStatus(LineStatus status) { this.status = status; }

        public LivePrice getPrice() { return price; }
        public void setPrice(LivePrice price) { this.price = price; }

        public LiveInventory getInventory() { return inventory; }
        public void setInventory(LiveInventory inventory) { this.inventory = inventory; }

        public TaxBreakup getTax() { return tax; }
        public void setTax(TaxBreakup tax) { this.tax = tax; }

        public CartContent getContent() { return content; }
        public void setContent(CartContent content) { this.content = content; }

        public BigDecimal getLastSeenPrice() { return lastSeenPrice; }
        public void setLastSeenPrice(BigDecimal lastSeenPrice) { this.lastSeenPrice = lastSeenPrice; }

        public InsuranceBinding getInsurance() { return insurance; }
        public void setInsurance(InsuranceBinding insurance) { this.insurance = insurance; }
}