فهرست منبع

修改首页问题

Administrator 2 سال پیش
والد
کامیت
1a4969f5d3
1فایلهای تغییر یافته به همراه11 افزوده شده و 0 حذف شده
  1. 11 0
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/projectV2/XmConstructionRateController.java

+ 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));
     }
+
+    /**
+     * 删除项目施工进度_引荐单位
+     */
+    @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));
+    }
 }