Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

public class FofoIdItemDetailModel {
        private int warehouseId;
        private int fofoId;
        private long qty;
        private String brand;
        private String modelName;
        private String modelNumber;
        private int catalogItemId;
        private int warehouseQty;

        public FofoIdItemDetailModel(int warehouseId, int fofoId, long qty, String brand, String modelName,
                        String modelNumber, int catalogItemId) {
                super();
                this.warehouseId = warehouseId;
                this.fofoId = fofoId;
                this.qty = qty;
                this.brand = brand;
                this.modelName = modelName;
                this.modelNumber = modelNumber;
                this.catalogItemId = catalogItemId;
        }

        public int getWarehouseQty() {
                return warehouseQty;
        }

        public void setWarehouseQty(int warehouseQty) {
                this.warehouseQty = warehouseQty;
        }

        public int getFofoId() {
                return fofoId;
        }

        public void setFofoId(int fofoId) {
                this.fofoId = fofoId;
        }

        public long getQty() {
                return qty;
        }

        public void setQty(long qty) {
                this.qty = qty;
        }

        public String getBrand() {
                return brand;
        }

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

        public String getModelName() {
                return modelName;
        }

        public void setModelName(String modelName) {
                this.modelName = modelName;
        }

        public String getModelNumber() {
                return modelNumber;
        }

        public void setModelNumber(String modelNumber) {
                this.modelNumber = modelNumber;
        }

        public int getCatalogItemId() {
                return catalogItemId;
        }

        public void setCatalogItemId(int catalogItemId) {
                this.catalogItemId = catalogItemId;
        }

        public int getWarehouseId() {
                return warehouseId;
        }

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

        @Override
        public String toString() {
                return "FofoIdItemDetailModel [warehouseId=" + warehouseId + ", fofoId=" + fofoId + ", qty=" + qty + ", brand="
                                + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber + ", catalogItemId="
                                + catalogItemId + "]";
        }

}