Subversion Repositories SmartDukaan

Rev

Rev 12025 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.metamodel.util;

import java.util.List;


public class ItemPojo {
        private Double sellingPrice;
        private Double mrp;
        private Long id;
        private String color;
        private Double minEmi;
        private String buttonText; 
        private Boolean showSellingPrice = true; 
        private Boolean comingSoon = false;
        private String statusDescription;
        private String bestDealText;
        private PrivateDealPojo dealPojo;
        private List<QtyPricePojo> bulkItemPricing;
                
        
        public Double getSellingPrice() {
                return sellingPrice;
        }
        public void setSellingPrice(Double sellingPrice) {
                this.sellingPrice = sellingPrice;
        }
        public Double getMrp() {
                return mrp;
        }
        public void setMrp(Double mrp) {
                this.mrp = mrp;
        }
        public Long getId() {
                return id;
        }
        public void setId(Long id) {
                this.id = id;
        }
        /*public boolean isAvailability() {
                return availability;
        }
        public void setAvailability(boolean availability) {
                this.availability = availability;
        }*/
        public void setColor(String color) {
                this.color = color;
        }
        public String getColor() {
                return color;
        }
        public void setMinEmi(double minEmi) {
                this.minEmi = minEmi;
        }
        public double getMinEmi() {
                return minEmi;
        }
        public void setButtonText(String buttonText) {
                this.buttonText = buttonText;
        }
        public String getButtonText() {
                return buttonText;
        }
        
        public void setShowSellingPrice(Boolean showSellingPrice) {
                this.showSellingPrice = showSellingPrice;
        }
        public Boolean getShowSellingPrice() {
                return showSellingPrice;
        }
        public void setComingSoon(Boolean comingSoon) {
                this.comingSoon = comingSoon;
        }
        public Boolean getComingSoon() {
                return comingSoon;
        }
        public void setStatusDescription(String statusDescription) {
                this.statusDescription = statusDescription;
        }
        public String getStatusDescription() {
                return statusDescription;
        }
        public void setDealPojo(PrivateDealPojo dealPojo) {
                this.dealPojo = dealPojo;
        }
        public PrivateDealPojo getDealPojo() {
                return dealPojo;
        }
        public void setBestDealText(String bestDealText) {
                this.bestDealText = bestDealText;
        }
        public String getBestDealText() {
                return bestDealText;
        }
        public void setBulkItemPricing(List<QtyPricePojo> bulkItemPricing) {
                this.bulkItemPricing = bulkItemPricing;
        }
        public List<QtyPricePojo> getBulkItemPricing() {
                return bulkItemPricing;
        }
}