...
|
...
|
@@ -59,7 +59,7 @@ public class StorageService { |
|
|
return new PageResponseBO<>();
|
|
|
}
|
|
|
|
|
|
List<Product> productList = productMapper.selectProductStorageList(product, bo.getStart(), bo.getRows());
|
|
|
List<Product> productList = productMapper.selectProductStorageList(product, bo.getStartIndex(), bo.getRows());
|
|
|
List<ProductResponceBo> responseBos = new ArrayList<>();
|
|
|
ProductResponceBo productResponseBo;
|
|
|
for (Product productItem : productList) {
|
...
|
...
|
@@ -82,7 +82,7 @@ public class StorageService { |
|
|
return new PageResponseBO<>();
|
|
|
}
|
|
|
|
|
|
List<StoragePrice> storagePriceList = storagePriceMapper.selectStoragePriceList(storagePrice, bo.getStart(), bo.getRows());
|
|
|
List<StoragePrice> storagePriceList = storagePriceMapper.selectStoragePriceList(storagePrice, bo.getStartIndex(), bo.getRows());
|
|
|
List<ProductResponceBo> responseBos = new ArrayList<>();
|
|
|
ProductResponceBo productResponseBo;
|
|
|
for (StoragePrice storagePriceItem : storagePriceList) {
|
...
|
...
|
|