Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.common.model;

public class CreateItemRequest {
        
        private String description;
        private String brand;
        private String typeString;
        private float price;
        private int vendorId;
        
        public String getDescription() {
                return description;
        }
        public void setDescription(String description) {
                this.description = description;
        }
        public String getBrand() {
                return brand;
        }
        public void setBrand(String brand) {
                this.brand = brand;
        }
        public String getTypeString() {
                return typeString;
        }
        public void setTypeString(String typeString) {
                this.typeString = typeString;
        }
        public float getPrice() {
                return price;
        }
        public void setPrice(float price) {
                this.price = price;
        }
        public int getVendorId() {
                return vendorId;
        }
        public void setVendorId(int vendorId) {
                this.vendorId = vendorId;
        }
        
        @Override
        public String toString() {
                return "CreateItemRequest [description=" + description + ", brand=" + brand + ", typeString=" + typeString
                                + ", price=" + price + ", vendorId=" + vendorId + "]";
        }
        
}