Rev 21543 | Rev 21614 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.model;public class CustomLineItem {private String brand;private String modelName;private String modelNumber;private String color;private float quantity;private float unitPrice;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 getQuantity() {return quantity;}public void setQuantity(float quantity) {this.quantity = quantity;}public float getUnitPrice() {return unitPrice;}public void setUnitPrice(float unitPrice) {this.unitPrice = unitPrice;}@Overridepublic String toString() {return "CustomLineItem [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber+ ", color=" + color + ", quantity=" + quantity + ", unitPrice=" + unitPrice + "]";}}