Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
11762 amit.gupta 1
package in.shop2020.metamodel.util;
2
 
3
public class PrivateDealPojo {
4
	private Long itemId;
5
	private String dealText;
6
	private Boolean isCod;
7
	private Double dealPrice;
8
	public Long getItemId() {
9
		return itemId;
10
	}
11
 
12
	public void setItemId(Long itemId) {
13
		this.itemId = itemId;
14
	}
15
	public String getDealText() {
16
		return dealText;
17
	}
18
	public void setDealText(String dealText) {
19
		this.dealText = dealText;
20
	}
21
	public Boolean getIsCod() {
22
		return isCod;
23
	}
24
	public void setIsCod(Boolean isCod) {
25
		this.isCod = isCod;
26
	}
27
	public Double getDealPrice() {
28
		return dealPrice;
29
	}
30
	public void setDealPrice(Double dealPrice) {
31
		this.dealPrice = dealPrice;
32
	}
33
}