oying-system/src/main/java/com/oying/modules/pc/store/rest/StoreCustomerController.java
@@ -77,7 +77,7 @@ private List<Product> getProductsByStoreId(Long storeId) { ProductQueryCriteria criteria = new ProductQueryCriteria(); criteria.setStoreId(storeId); criteria.setStatus(ProductStatusEnum.AVAILABLE.getValue()); criteria.setShelfStatus(ProductStatusEnum.AVAILABLE.getValue()); criteria.setLimit(3); return productService.queryAll(criteria); }