Subversion Repositories SmartDukaan

Rev

Rev 11762 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11762 Rev 11788
Line 1... Line 1...
1
package in.shop2020.metamodel.util;
1
package in.shop2020.metamodel.util;
2
 
2
 
3
public class PrivateDealPojo {
3
public class PrivateDealPojo {
4
	private Long itemId;
4
	private Long itemId;
-
 
5
	private Long dealTextOption;
5
	private String dealText;
6
	private String dealText;
6
	private Boolean isCod;
7
	private Boolean isCod;
7
	private Double dealPrice;
8
	private Double dealPrice;
-
 
9
	private Long dealFreebieOption;
-
 
10
	private Long freebieItemId;
8
	public Long getItemId() {
11
	public Long getItemId() {
9
		return itemId;
12
		return itemId;
10
	}
13
	}
11
	
14
	
12
	public void setItemId(Long itemId) {
15
	public void setItemId(Long itemId) {
Line 28... Line 31...
28
		return dealPrice;
31
		return dealPrice;
29
	}
32
	}
30
	public void setDealPrice(Double dealPrice) {
33
	public void setDealPrice(Double dealPrice) {
31
		this.dealPrice = dealPrice;
34
		this.dealPrice = dealPrice;
32
	}
35
	}
-
 
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
 
33
}
61
}