Subversion Repositories SmartDukaan

Rev

Rev 11762 | Go to most recent revision | Details | Compare with Previous | 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;
11788 amit.gupta 5
	private Long dealTextOption;
11762 amit.gupta 6
	private String dealText;
7
	private Boolean isCod;
8
	private Double dealPrice;
11788 amit.gupta 9
	private Long dealFreebieOption;
10
	private Long freebieItemId;
11762 amit.gupta 11
	public Long getItemId() {
12
		return itemId;
13
	}
14
 
15
	public void setItemId(Long itemId) {
16
		this.itemId = itemId;
17
	}
18
	public String getDealText() {
19
		return dealText;
20
	}
21
	public void setDealText(String dealText) {
22
		this.dealText = dealText;
23
	}
24
	public Boolean getIsCod() {
25
		return isCod;
26
	}
27
	public void setIsCod(Boolean isCod) {
28
		this.isCod = isCod;
29
	}
30
	public Double getDealPrice() {
31
		return dealPrice;
32
	}
33
	public void setDealPrice(Double dealPrice) {
34
		this.dealPrice = dealPrice;
35
	}
11788 amit.gupta 36
 
37
	public void setDealTextOption(Long dealTextOption) {
38
		this.dealTextOption = dealTextOption;
39
	}
40
 
41
	public Long getDealTextOption() {
42
		return dealTextOption;
43
	}
44
 
45
	public void setDealFreebieOption(Long dealFreebieOption) {
46
		this.dealFreebieOption = dealFreebieOption;
47
	}
48
 
49
	public Long getDealFreebieOption() {
50
		return dealFreebieOption;
51
	}
52
 
53
	public void setFreebieItemId(Long freebieItemId) {
54
		this.freebieItemId = freebieItemId;
55
	}
56
 
57
	public Long getFreebieItemId() {
58
		return freebieItemId;
59
	}
60
 
11762 amit.gupta 61
}