yjwang 1 week ago
parent
commit
15c46c0971

+ 2 - 2
fs-user-app/src/main/java/com/fs/app/controller/store/StoreScrmController.java

@@ -110,9 +110,9 @@ public class StoreScrmController extends BaseController
     @Login
     @Log(title = "店铺管理", businessType = BusinessType.DELETE,logParam = {"店铺","删除店铺信息"},isStoreLog = true)
 	@DeleteMapping("/{storeIds}")
-    public AjaxResult remove(@PathVariable Long[] storeIds)
+    public R remove(@PathVariable Long[] storeIds)
     {
-        return toAjax(fsStoreService.deleteFsStoreByStoreIds(storeIds));
+        return fsStoreService.deleteFsStoreByStoreIds(storeIds);
     }
 
     /**