Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

public class InStockBrandItemModel {
        private String brand;
        private String modelName;
        private String modelNumber;
        private String color;
        private long qty;
        private long amount;

        public InStockBrandItemModel(String brand, String modelName, String modelNumber, String color, long qty,
                        long amount) {
                super();
                this.brand = brand;
                this.modelName = modelName;
                this.modelNumber = modelNumber;
                this.color = color;
                this.qty = qty;
                this.amount = amount;
        }

        public String getBrand() {
                return brand;
        }

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

        public String getModelName() {
                return modelName;
        }

        public void setModelName(String modelName) {
                this.modelName = modelName;
        }

        public String getModelNumber() {
                return modelNumber;
        }

        public void setModelNumber(String modelNumber) {
                this.modelNumber = modelNumber;
        }

        public String getColor() {
                return color;
        }

        public void setColor(String color) {
                this.color = color;
        }

        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 "InStockBrandItemModel [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
                                + ", color=" + color + ", qty=" + qty + ", amount=" + amount + "]";
        }

}