Subversion Repositories SmartDukaan

Rev

Rev 27739 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.model;

public class OurPurchaseModel {

        private String brand;
        private long todayValue;
        private long threedaysValue;
        private long lms;
        private long mtd;
        private long todayQty;
        private long threedaysQty;
        private long lmsQty;
        private long mtdQty;

        public OurPurchaseModel(String brand, long todayValue, long threedaysValue, long lms, long mtd, long todayQty,
                        long threedaysQty, long lmsQty, long mtdQty) {
                super();
                this.brand = brand;
                this.todayValue = todayValue;
                this.threedaysValue = threedaysValue;
                this.lms = lms;
                this.mtd = mtd;
                this.todayQty = todayQty;
                this.threedaysQty = threedaysQty;
                this.lmsQty = lmsQty;
                this.mtdQty = mtdQty;
        }

        public OurPurchaseModel() {
                super();
                // TODO Auto-generated constructor stub
        }

        public String getBrand() {
                return brand;
        }

        public void setBrand(String brand) {
                this.brand = brand;
        }

        public long getTodayValue() {
                return todayValue;
        }

        public void setTodayValue(long todayValue) {
                this.todayValue = todayValue;
        }

        public long getThreedaysValue() {
                return threedaysValue;
        }

        public void setThreedaysValue(long threedaysValue) {
                this.threedaysValue = threedaysValue;
        }

        public long getLms() {
                return lms;
        }

        public void setLms(long lms) {
                this.lms = lms;
        }

        public long getMtd() {
                return mtd;
        }

        public void setMtd(long mtd) {
                this.mtd = mtd;
        }

        public long getTodayQty() {
                return todayQty;
        }

        public void setTodayQty(long todayQty) {
                this.todayQty = todayQty;
        }

        public long getThreedaysQty() {
                return threedaysQty;
        }

        public void setThreedaysQty(long threedaysQty) {
                this.threedaysQty = threedaysQty;
        }

        public long getLmsQty() {
                return lmsQty;
        }

        public void setLmsQty(long lmsQty) {
                this.lmsQty = lmsQty;
        }

        public long getMtdQty() {
                return mtdQty;
        }

        public void setMtdQty(long mtdQty) {
                this.mtdQty = mtdQty;
        }

        @Override
        public String toString() {
                return "OurPurchaseModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue=" + threedaysValue
                                + ", lms=" + lms + ", mtd=" + mtd + ", todayQty=" + todayQty + ", threedaysQty=" + threedaysQty
                                + ", lmsQty=" + lmsQty + ", mtdQty=" + mtdQty + "]";
        }

}