songhuangfeng123
2022-08-22 80ca6abff38cf5520fcd0825d9d46582d3063f2d
incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/controller/AccidentReportController.java
@@ -60,8 +60,8 @@
    /**
     * 事故报告删除/批量删除
     */
    @RequestMapping(value = "/batchDelete/{ids}",method = RequestMethod.GET)
    public ResultVO batchDeleteAccidentReport(@PathVariable("ids")String ids){
    @RequestMapping(value = "/batchDelete",method = RequestMethod.POST)
    public ResultVO batchDeleteAccidentReport(@RequestBody Long[] ids){
        return accidentReportService.batchDeleteAccidentReport(ids);
    }