Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

public class InStockBrandModel {

        private String brand;
        private long qty;
        private long amount;

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

        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 "InStockBrandModel [brand=" + brand + ", qty=" + qty + ", amount=" + amount + "]";
        }

}