Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package in.shop2020.metamodel.util;public class QtyPricePojo {private Long quantity;private Double price;public void setQuantity(Long quantity) {this.quantity = quantity;}public Long getQuantity() {return quantity;}public void setPrice(Double price) {this.price = price;}public Double getPrice() {return price;}@Overridepublic String toString() {return "QtyPricePojo [quantity=" + quantity + ", price=" + price + "]";}}