Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

public class FofoIdQtyModel {
        private int warehouseId;
        private int fofoId;
        private long qty;

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

        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 int getWarehouseId() {
                return warehouseId;
        }

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

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

}