Authored by caoyan

Merge branch 'master' of http://git.yoho.cn/ufo/ufo-platform

@@ -59,7 +59,7 @@ public class StorageService { @@ -59,7 +59,7 @@ public class StorageService {
59 return new PageResponseBO<>(); 59 return new PageResponseBO<>();
60 } 60 }
61 61
62 - List<Product> productList = productMapper.selectProductStorageList(product, bo.getStart(), bo.getRows()); 62 + List<Product> productList = productMapper.selectProductStorageList(product, bo.getStartIndex(), bo.getRows());
63 List<ProductResponceBo> responseBos = new ArrayList<>(); 63 List<ProductResponceBo> responseBos = new ArrayList<>();
64 ProductResponceBo productResponseBo; 64 ProductResponceBo productResponseBo;
65 for (Product productItem : productList) { 65 for (Product productItem : productList) {
@@ -82,7 +82,7 @@ public class StorageService { @@ -82,7 +82,7 @@ public class StorageService {
82 return new PageResponseBO<>(); 82 return new PageResponseBO<>();
83 } 83 }
84 84
85 - List<StoragePrice> storagePriceList = storagePriceMapper.selectStoragePriceList(storagePrice, bo.getStart(), bo.getRows()); 85 + List<StoragePrice> storagePriceList = storagePriceMapper.selectStoragePriceList(storagePrice, bo.getStartIndex(), bo.getRows());
86 List<ProductResponceBo> responseBos = new ArrayList<>(); 86 List<ProductResponceBo> responseBos = new ArrayList<>();
87 ProductResponceBo productResponseBo; 87 ProductResponceBo productResponseBo;
88 for (StoragePrice storagePriceItem : storagePriceList) { 88 for (StoragePrice storagePriceItem : storagePriceList) {