Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20424 kshitij.so 1
package com.hotspotstore.model;
2
 
3
import java.util.List;
4
 
5
 
6
public class ItemPojo {
7
	private Double sellingPrice;
8
	private Double mrp;
9
	private Long id;
10
	private String color;
11
	private Double minEmi;
12
	private String buttonText; 
13
	private Boolean showSellingPrice = true; 
14
	private Boolean comingSoon = false;
15
	private String statusDescription;
16
	private String bestDealText;
17
 
18
 
19
 
20
	public Double getSellingPrice() {
21
		return sellingPrice;
22
	}
23
	public void setSellingPrice(Double sellingPrice) {
24
		this.sellingPrice = sellingPrice;
25
	}
26
	public Double getMrp() {
27
		return mrp;
28
	}
29
	public void setMrp(Double mrp) {
30
		this.mrp = mrp;
31
	}
32
	public Long getId() {
33
		return id;
34
	}
35
	public void setId(Long id) {
36
		this.id = id;
37
	}
38
	/*public boolean isAvailability() {
39
		return availability;
40
	}
41
	public void setAvailability(boolean availability) {
42
		this.availability = availability;
43
	}*/
44
	public void setColor(String color) {
45
		this.color = color;
46
	}
47
	public String getColor() {
48
		return color;
49
	}
50
	public void setMinEmi(double minEmi) {
51
		this.minEmi = minEmi;
52
	}
53
	public double getMinEmi() {
54
		return minEmi;
55
	}
56
	public void setButtonText(String buttonText) {
57
		this.buttonText = buttonText;
58
	}
59
	public String getButtonText() {
60
		return buttonText;
61
	}
62
 
63
	public void setShowSellingPrice(Boolean showSellingPrice) {
64
		this.showSellingPrice = showSellingPrice;
65
	}
66
	public Boolean getShowSellingPrice() {
67
		return showSellingPrice;
68
	}
69
	public void setComingSoon(Boolean comingSoon) {
70
		this.comingSoon = comingSoon;
71
	}
72
	public Boolean getComingSoon() {
73
		return comingSoon;
74
	}
75
	public void setStatusDescription(String statusDescription) {
76
		this.statusDescription = statusDescription;
77
	}
78
	public String getStatusDescription() {
79
		return statusDescription;
80
	}
81
 
82
	public void setBestDealText(String bestDealText) {
83
		this.bestDealText = bestDealText;
84
	}
85
	public String getBestDealText() {
86
		return bestDealText;
87
	}
88
 
89
}