This commit is contained in:
wangjinlei
2024-05-31 13:37:11 +08:00
parent 3085b79976
commit 02f4c63062
4 changed files with 24 additions and 1 deletions

View File

@@ -73,6 +73,12 @@ public class ShopProductController {
return R.ok();
}
@RequestMapping("/delShopProduct")
public R delShopProduct(@RequestBody Map<String,Integer> map){
int productId = map.get("productId");
return shopProductService.delShopProduct(productId);
}
@RequestMapping("/bindProductAndBookMarket")
public R bindProductAndBookMarket(@RequestBody Map<String,String> map){
String[] productIds = map.get("productId").split(",");