Subversion Repositories SmartDukaan

Rev

Rev 12025 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12025 Rev 18455
Line 1... Line 1...
1
package in.shop2020.metamodel.util;
1
package in.shop2020.metamodel.util;
2
 
2
 
-
 
3
import java.util.List;
-
 
4
 
3
 
5
 
4
public class ItemPojo {
6
public class ItemPojo {
5
	private Double sellingPrice;
7
	private Double sellingPrice;
6
	private Double mrp;
8
	private Double mrp;
7
	private Long id;
9
	private Long id;
Line 11... Line 13...
11
	private Boolean showSellingPrice = true; 
13
	private Boolean showSellingPrice = true; 
12
	private Boolean comingSoon = false;
14
	private Boolean comingSoon = false;
13
	private String statusDescription;
15
	private String statusDescription;
14
	private String bestDealText;
16
	private String bestDealText;
15
	private PrivateDealPojo dealPojo;
17
	private PrivateDealPojo dealPojo;
-
 
18
	private List<QtyPricePojo> bulkItemPricing;
16
		
19
		
17
	
20
	
18
	public Double getSellingPrice() {
21
	public Double getSellingPrice() {
19
		return sellingPrice;
22
		return sellingPrice;
20
	}
23
	}
Line 86... Line 89...
86
		this.bestDealText = bestDealText;
89
		this.bestDealText = bestDealText;
87
	}
90
	}
88
	public String getBestDealText() {
91
	public String getBestDealText() {
89
		return bestDealText;
92
		return bestDealText;
90
	}
93
	}
-
 
94
	public void setBulkItemPricing(List<QtyPricePojo> bulkItemPricing) {
-
 
95
		this.bulkItemPricing = bulkItemPricing;
-
 
96
	}
-
 
97
	public List<QtyPricePojo> getBulkItemPricing() {
-
 
98
		return bulkItemPricing;
-
 
99
	}
91
}
100
}