Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

public class OpenPoModel {
        private String brand;
        private long todayValue;
        private long threedaysValue;
        private long sevendaysValue;
        private long todayQty;
        private long threedaysQty;
        private long sevendaysQty;

        public OpenPoModel(String brand, long todayValue, long threedaysValue, long sevendaysValue, long todayQty,
                        long threedaysQty, long sevendaysQty) {
                super();
                this.brand = brand;
                this.todayValue = todayValue;
                this.threedaysValue = threedaysValue;
                this.sevendaysValue = sevendaysValue;
                this.todayQty = todayQty;
                this.threedaysQty = threedaysQty;
                this.sevendaysQty = sevendaysQty;
        }

        public OpenPoModel() {
                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 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 getSevendaysQty() {
                return sevendaysQty;
        }

        public void setSevendaysQty(long sevendaysQty) {
                this.sevendaysQty = sevendaysQty;
        }

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

        public long getThreedaysValue() {
                return threedaysValue;
        }

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

        public long getSevendaysValue() {
                return sevendaysValue;
        }

        public void setSevendaysValue(long sevendaysValue) {
                this.sevendaysValue = sevendaysValue;
        }

        @Override
        public String toString() {
                return "OpenPoModel [brand=" + brand + ", todayValue=" + todayValue + ", threedaysValue=" + threedaysValue
                                + ", sevendaysValue=" + sevendaysValue + ", todayQty=" + todayQty + ", threedaysQty=" + threedaysQty
                                + ", sevendaysQty=" + sevendaysQty + "]";
        }

}