소스 검색

修改首页问题

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));
+    }
 }