Subversion Repositories SmartDukaan

Rev

Rev 26607 | Rev 31773 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.model;

import java.time.LocalDateTime;

import com.spice.profitmandi.dao.cart.CartItemMessage;
import com.spice.profitmandi.service.inventory.BulkPricing;

public class CartItemResponseModel {
        private String imageUrl;
        private String dealText;
        private int itemId;
        private long maxQuantity;
        private int estimate;
        private int quantityStep;
        private int packQuantity;
        private int minBuyQuantity;
        private BulkPricing[] bulkPricing;
        private String categoryName;
        private double sellingPrice;
        private String title;
        private CartItemMessage[] cartItemMessages;
        private String color;
        private long quantity;
        private long catalogItemId;
        private LocalDateTime promiseDelivery;

        public LocalDateTime getPromiseDelivery() {
                return promiseDelivery;
        }

        public void setPromiseDelivery(LocalDateTime promiseDelivery) {
                this.promiseDelivery = promiseDelivery;
        }

        public String getImageUrl() {
                return imageUrl;
        }

        public void setImageUrl(String imageUrl) {
                this.imageUrl = imageUrl;
        }

        public String getDealText() {
                return dealText;
        }

        public void setDealText(String dealText) {
                this.dealText = dealText;
        }

        public int getItemId() {
                return itemId;
        }

        public void setItemId(int itemId) {
                this.itemId = itemId;
        }

        public long getMaxQuantity() {
                return maxQuantity;
        }

        public void setMaxQuantity(long maxQuantity) {
                this.maxQuantity = maxQuantity;
        }

        public int getEstimate() {
                return estimate;
        }

        public void setEstimate(int estimate) {
                this.estimate = estimate;
        }

        public int getQuantityStep() {
                return quantityStep;
        }

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

        public int getPackQuantity() {
                return packQuantity;
        }

        public void setPackQuantity(int packQuantity) {
                this.packQuantity = packQuantity;
        }

        public int getMinBuyQuantity() {
                return minBuyQuantity;
        }

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

        public BulkPricing[] getBulkPricing() {
                return bulkPricing;
        }

        public void setBulkPricing(BulkPricing[] bulkPricing) {
                this.bulkPricing = bulkPricing;
        }

        public String getCategoryName() {
                return categoryName;
        }

        public void setCategoryName(String categoryName) {
                this.categoryName = categoryName;
        }

        public double getSellingPrice() {
                return sellingPrice;
        }

        public void setSellingPrice(double sellingPrice) {
                this.sellingPrice = sellingPrice;
        }

        public String getTitle() {
                return title;
        }

        public void setTitle(String title) {
                this.title = title;
        }

        public CartItemMessage[] getCartItemMessages() {
                return cartItemMessages;
        }

        public void setCartItemMessages(CartItemMessage[] cartItemMessages) {
                this.cartItemMessages = cartItemMessages;
        }

        public String getColor() {
                return color;
        }

        public void setColor(String color) {
                this.color = color;
        }

        public long getQuantity() {
                return quantity;
        }

        public void setQuantity(long quantity) {
                this.quantity = quantity;
        }

        public long getCatalogItemId() {
                return catalogItemId;
        }

        public void setCatalogItemId(long catalogItemId) {
                this.catalogItemId = catalogItemId;
        }

}