Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

public class WarehouseWiseBrandSaleModel {

        private int warehouseId;
        private String brand;
        private long lmtd;
        private long lmtdQty;
        private long mtd;
        private long mtdQty;

        public WarehouseWiseBrandSaleModel(String brand, long lmtd, long lmtdQty, long mtd, long mtdQty) {
                super();
                this.brand = brand;
                this.lmtd = lmtd;
                this.lmtdQty = lmtdQty;
                this.mtd = mtd;
                this.mtdQty = mtdQty;
        }

        public long getLmtdQty() {
                return lmtdQty;
        }

        public void setLmtdQty(long lmtdQty) {
                this.lmtdQty = lmtdQty;
        }

        public long getMtd() {
                return mtd;
        }

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

        public long getMtdQty() {
                return mtdQty;
        }

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

        public int getWarehouseId() {
                return warehouseId;
        }

        public void setWarehouseId(int warehouseId) {
                this.warehouseId = warehouseId;
        }

        public long getLmtd() {
                return lmtd;
        }

        public void setLmtd(long lmtd) {
                this.lmtd = lmtd;
        }

        public String getBrand() {
                return brand;
        }

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

        @Override
        public String toString() {
                return "WarehouseWiseBrandSaleModel [warehouseId=" + warehouseId + ", brand=" + brand + ", lmtd=" + lmtd
                                + ", lmtdQty=" + lmtdQty + ", mtd=" + mtd + ", mtdQty=" + mtdQty + "]";
        }

}