|
|
@ -18,7 +18,15 @@ public class Product { |
|
|
private Double marketRetailPrice; |
|
|
private Double marketRetailPrice; |
|
|
private Integer discount; |
|
|
private Integer discount; |
|
|
private Double discountedPrice; |
|
|
private Double discountedPrice; |
|
|
|
|
|
private Boolean trending; |
|
|
|
|
|
|
|
|
|
|
|
public Boolean getTrending() { |
|
|
|
|
|
return trending; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setTrending(Boolean trending) { |
|
|
|
|
|
this.trending = trending; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public String getImageUrl() { |
|
|
public String getImageUrl() { |
|
|
return imageUrl; |
|
|
return imageUrl; |
|
|
|