Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

public class InStockBrandFofoIdModel {
        private int fofoId;
        private String brand;
        private long qty;
        private long amount;

        public InStockBrandFofoIdModel(int fofoId, String brand, long qty, long amount) {
                super();
                this.fofoId = fofoId;
                this.brand = brand;
                this.qty = qty;
                this.amount = amount;
        }

        public int getFofoId() {
                return fofoId;
        }

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

        public String getBrand() {
                return brand;
        }

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

        public long getQty() {
                return qty;
        }

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

        public long getAmount() {
                return amount;
        }

        public void setAmount(long amount) {
                this.amount = amount;
        }

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

}