Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.model;

public class FofoIdCatalogQtyModel {
        private int warehouseId;
        private int fofoId;
        private int catalogItemId;
        private long qty;

        public FofoIdCatalogQtyModel(int warehouseId, int fofoId, int catalogItemId, long qty) {
                super();
                this.warehouseId = warehouseId;
                this.fofoId = fofoId;
                this.catalogItemId = catalogItemId;
                this.qty = qty;
        }

        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;
        }

        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;
        }

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

}