...
|
...
|
@@ -36,6 +36,9 @@ public class ProductInfo { |
|
|
|
|
|
@JSONField(name="max_price")
|
|
|
private BigDecimal maxPrice;
|
|
|
|
|
|
@JSONField(name="shelve_status")
|
|
|
private Integer shelveStatus;
|
|
|
|
|
|
public BigDecimal getMinPrice() {
|
|
|
return minPrice;
|
...
|
...
|
@@ -116,4 +119,13 @@ public class ProductInfo { |
|
|
public void setLeastPrice(BigDecimal leastPrice) {
|
|
|
this.leastPrice = leastPrice;
|
|
|
}
|
|
|
|
|
|
public Integer getShelveStatus() {
|
|
|
return shelveStatus;
|
|
|
}
|
|
|
|
|
|
public void setShelveStatus(Integer shelveStatus) {
|
|
|
this.shelveStatus = shelveStatus;
|
|
|
}
|
|
|
|
|
|
} |
...
|
...
|
|