|
|
@@ -36,6 +36,8 @@ public class ProductInfo {
|
|
|
|
|
|
private List<ProductPrice> productPriceList;
|
|
|
|
|
|
+ private StoreInfo storeInfo;
|
|
|
+
|
|
|
private String searchKey;
|
|
|
|
|
|
/**
|
|
|
@@ -255,5 +257,13 @@ public class ProductInfo {
|
|
|
public void setProductPriceList(List<ProductPrice> productPriceList) {
|
|
|
this.productPriceList = productPriceList;
|
|
|
}
|
|
|
+
|
|
|
+ public StoreInfo getStoreInfo() {
|
|
|
+ return storeInfo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStoreInfo(StoreInfo storeInfo) {
|
|
|
+ this.storeInfo = storeInfo;
|
|
|
+ }
|
|
|
}
|
|
|
|