Subversion Repositories SmartDukaan

Rev

Rev 24995 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class BrandStockPrice {
        private String brand;
        private int totalQty;
        private double totalValue;
        private double agedValue;
        private int agedQty;
        public double getAgedValue() {
                return agedValue;
        }

        public void setAgedValue(double agedValue) {
                this.agedValue = agedValue;
        }

        public int getAgedQty() {
                return agedQty;
        }

        public void setAgedQty(int agedQty) {
                this.agedQty = agedQty;
        }
        private String brandUrl;
        private int rank;
        @Override
        public String toString() {
                return "BrandStockPrice [brand=" + brand + ", totalQty=" + totalQty + ", totalValue=" + totalValue
                                + ", agedValue=" + agedValue + ", agedQty=" + agedQty + ", brandUrl=" + brandUrl + ", rank=" + rank
                                + "]";
        }
        
        public String getBrandUrl() {
                return brandUrl;
        }

        public void setBrandUrl(String brandUrl) {
                this.brandUrl = brandUrl;
        }

        public int getRank() {
                return rank;
        }

        public void setRank(int rank) {
                this.rank = rank;
        }

        public String getBrand() {
                return brand;
        }
        public void setBrand(String brand) {
                this.brand = brand;
        }
        public int getTotalQty() {
                return totalQty;
        }
        public void setTotalQty(int totalQty) {
                this.totalQty = totalQty;
        }
        public double getTotalValue() {
                return totalValue;
        }
        public void setTotalValue(double totalValue) {
                this.totalValue = totalValue;
        }
        
        

}