Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

public class OurPurchaseItemModel {
        private int warehouseId;
        private String brand;
        private String modelName;
        private String modelNumber;
        private String color;
        private float value;
        private Integer qty;

        public OurPurchaseItemModel(int warehouseId, String brand, String modelName, String modelNumber, String color,
                        float value, Integer qty) {
                super();
                this.warehouseId = warehouseId;
                this.brand = brand;
                this.modelName = modelName;
                this.modelNumber = modelNumber;
                this.color = color;
                this.value = value;
                this.qty = qty;
        }

        public OurPurchaseItemModel() {
                super();
                // TODO Auto-generated constructor stub
        }

        public int getWarehouseId() {
                return warehouseId;
        }

        public void setWarehouseId(int warehouseId) {
                this.warehouseId = warehouseId;
        }

        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 float getValue() {
                return value;
        }

        public void setValue(float value) {
                this.value = value;
        }

        public Integer getQty() {
                return qty;
        }

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

        @Override
        public String toString() {
                return "OurPurchaseItemModel [warehouseId=" + warehouseId + ", brand=" + brand + ", modelName=" + modelName
                                + ", modelNumber=" + modelNumber + ", color=" + color + ", value=" + value + ", qty=" + qty + "]";
        }


}