Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
18454 amit.gupta 1
package in.shop2020.metamodel.util;
2
 
3
public class QtyPricePojo {
4
	private Long quantity;
5
	private Double price;
6
	public void setQuantity(Long quantity) {
7
		this.quantity = quantity;
8
	}
9
	public Long getQuantity() {
10
		return quantity;
11
	}
12
	public void setPrice(Double price) {
13
		this.price = price;
14
	}
15
	public Double getPrice() {
16
		return price;
17
	}
18
	@Override
19
	public String toString() {
20
		return "QtyPricePojo [quantity=" + quantity + ", price=" + price + "]";
21
	}
22
 
23
}