Administrator 2 лет назад
Родитель
Сommit
1a4969f5d3

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

@@ -123,4 +123,15 @@ public class XmConstructionRateController extends BaseController
     {
     {
         return toAjax(xmConstructionRateService.deleteXmConstructionRateByIds(ids));
         return toAjax(xmConstructionRateService.deleteXmConstructionRateByIds(ids));
     }
     }
+
+    /**
+     * 删除项目施工进度_引荐单位
+     */
+    @PreAuthorize("@ss.hasPermi('projectV2:rate:removeYj')")
+    @Log(title = "项目施工进度", businessType = BusinessType.DELETE)
+    @GetMapping("/deleteYj/{ids}")
+    public AjaxResult removeYj(@PathVariable Long[] ids)
+    {
+        return toAjax(xmConstructionRateService.deleteXmConstructionRateByIds(ids));
+    }
 }
 }