Subversion Repositories SmartDukaan

Rev

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

Rev 11153 Rev 11762
Line 1... Line 1...
1
package in.shop2020.metamodel.util;
1
package in.shop2020.metamodel.util;
2
 
2
 
-
 
3
 
3
public class ItemPojo {
4
public class ItemPojo {
4
	private Double sellingPrice;
5
	private Double sellingPrice;
5
	private Double mrp;
6
	private Double mrp;
6
	private Long id;
7
	private Long id;
7
	private String color;
8
	private String color;
8
	private Double minEmi;
9
	private Double minEmi;
9
	private String buttonText; 
10
	private String buttonText; 
10
	private Boolean showSellingPrice = true; 
11
	private Boolean showSellingPrice = true; 
11
	private Boolean comingSoon = false;
12
	private Boolean comingSoon = false;
12
	private String statusDescription;
13
	private String statusDescription;
-
 
14
	private PrivateDealPojo dealPojo;
13
	
15
		
14
	
16
	
15
	public Double getSellingPrice() {
17
	public Double getSellingPrice() {
16
		return sellingPrice;
18
		return sellingPrice;
17
	}
19
	}
18
	public void setSellingPrice(Double sellingPrice) {
20
	public void setSellingPrice(Double sellingPrice) {
Line 71... Line 73...
71
		this.statusDescription = statusDescription;
73
		this.statusDescription = statusDescription;
72
	}
74
	}
73
	public String getStatusDescription() {
75
	public String getStatusDescription() {
74
		return statusDescription;
76
		return statusDescription;
75
	}
77
	}
-
 
78
	public void setDealPojo(PrivateDealPojo dealPojo) {
-
 
79
		this.dealPojo = dealPojo;
-
 
80
	}
-
 
81
	public PrivateDealPojo getDealPojo() {
-
 
82
		return dealPojo;
-
 
83
	}
76
}
84
}