| | |
| | | */ |
| | | @ApiOperation(tags = {"后台-监控"},value = "查看监控详情") |
| | | @GetMapping(value = "/getDetailById") |
| | | public AjaxResult<TMonitoringEquipment> getDetailById(@RequestParam Integer id) { |
| | | public AjaxResult<TMonitoringEquipment> getDetailById(@RequestParam("id") Integer id) { |
| | | return AjaxResult.ok(monitoringEquipmentService.getById(id)); |
| | | } |
| | | |
| | |
| | | @Log(title = "删除监控", businessType = BusinessType.DELETE,operatorType = OperatorType.MANAGE) |
| | | @ApiOperation(tags = {"后台-监控"},value = "删除监控") |
| | | @DeleteMapping(value = "/deleteById") |
| | | public AjaxResult<Boolean> deleteById(@RequestParam Integer id) { |
| | | public AjaxResult<Boolean> deleteById(@RequestParam("id") Integer id) { |
| | | return AjaxResult.ok(monitoringEquipmentService.removeById(id)); |
| | | } |
| | | |