|
@@ -92,6 +92,13 @@ public class WebPageApi {
|
|
return newPageZoneService.selectProductList(id, productId, shopName, productName, pageNum, pageSize);
|
|
return newPageZoneService.selectProductList(id, productId, shopName, productName, pageNum, pageSize);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @GetMapping("/select/recommendProductList")
|
|
|
|
+ public ResponseJson<PaginationVo<Product>> recommendProductList(Integer productId, String shopName, String productName,
|
|
|
|
+ @RequestParam(value = "pageNum", defaultValue = "1") int pageNum,
|
|
|
|
+ @RequestParam(value = "pageSize", defaultValue = "20") int pageSize) {
|
|
|
|
+ return newPageZoneService.recommendProductList(productId, shopName, productName, pageNum, pageSize);
|
|
|
|
+ }
|
|
|
|
+
|
|
@GetMapping("/delZoneProduct")
|
|
@GetMapping("/delZoneProduct")
|
|
public ResponseJson delZoneProduct(Integer id, String ids) {
|
|
public ResponseJson delZoneProduct(Integer id, String ids) {
|
|
return newPageZoneService.delZoneProduct(id, ids);
|
|
return newPageZoneService.delZoneProduct(id, ids);
|