bug
This commit is contained in:
@@ -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(",");
|
||||
|
||||
Reference in New Issue
Block a user