Bladeren bron

总表删除

LIVE_YE 2 jaren geleden
bovenliggende
commit
3a1a7bafeb

+ 11 - 0
ruoyi-admin/src/main/java/com/ruoyi/web/controller/projectV2/ZsyzSbbzbController.java

@@ -108,4 +108,15 @@ public class ZsyzSbbzbController extends BaseController
     {
         return toAjax(zsyzSbbzbService.deleteZsyzSbbzbByIds(ids));
     }
+
+    /**
+     * 删除招商引资_申报_首谈信息_主
+     */
+    @PreAuthorize("@ss.hasPermi('projectV2:sbbzb:remove')")
+    @Log(title = "招商引资_申报_首谈信息_主", businessType = BusinessType.DELETE)
+    @GetMapping("/delete")
+    public AjaxResult Delete(Long id)
+    {
+        return toAjax(zsyzSbbzbService.deleteZsyzSbbzbById(id));
+    }
 }