Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

public class ItemWiseTertiaryModel {

        private String brand;
        private String modelName;
        private String modelNumber;
        private String color;
        private int quantity;
        private float mop;

        public ItemWiseTertiaryModel(String brand, String modelName, String modelNumber, String color, int quantity,
                        float mop) {
                super();
                this.brand = brand;
                this.modelName = modelName;
                this.modelNumber = modelNumber;
                this.color = color;
                this.quantity = quantity;
                this.mop = mop;
        }

        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 int getQuantity() {
                return quantity;
        }

        public void setQuantity(int quantity) {
                this.quantity = quantity;
        }

        public float getMop() {
                return mop;
        }

        public String getColor() {
                return color;
        }

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

        public void setMop(float mop) {
                this.mop = mop;
        }

        @Override
        public String toString() {
                return "ItemWiseTertiaryModel [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
                                + ", color=" + color + ", quantity=" + quantity + ", mop=" + mop + "]";
        }

}