| | |
| | | /** |
| | | * 应急预案删除/批量删除 |
| | | */ |
| | | @RequestMapping(value = "/batchDelete/{ids}",method = RequestMethod.GET) |
| | | public ResultVO batchDeleteEmergencyPlan(@PathVariable("ids")String ids){ |
| | | @RequestMapping(value = "/batchDelete",method = RequestMethod.POST) |
| | | public ResultVO batchDeleteEmergencyPlan(@RequestBody Long[] ids){ |
| | | return emergencyPlanService.batchDeleteEmergencyPlan(ids); |
| | | } |
| | | |
| | | /** |
| | | * 应急预案废止/还原 |
| | | */ |
| | | /** |
| | | * 应急预案详情 |
| | | */ |
| | | @RequestMapping(value = "/updateAbolish",method = RequestMethod.GET) |
| | | public ResultVO updateAbolish(Long id ,Boolean abolishStatus){ |
| | | return emergencyPlanService.updateAbolish(id,abolishStatus); |
| | | } |
| | | |
| | | } |