Subversion Repositories SmartDukaan

Rev

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 FofoIdQtyModel {

        private int fofoId;
        private long qty;

        public FofoIdQtyModel(int fofoId, long qty) {
                super();
                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;
        }

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

}