| | |
| | | } |
| | | |
| | | @ApiOperation("修改指定消息") |
| | | @RequestMapping(value = "/update/{id}", method = RequestMethod.POST) |
| | | @RequestMapping(value = "/update", method = RequestMethod.POST) |
| | | @ResponseBody |
| | | @LogSave(operationType = "消息管理", contain = "修改消息") |
| | | public CommonResult update(@RequestBody Message message) { |
| | |
| | | } |
| | | |
| | | @ApiOperation("批量删除消息") |
| | | @RequestMapping(value = "/delete", method = RequestMethod.POST) |
| | | @RequestMapping(value = "/delete", method = RequestMethod.DELETE) |
| | | @ResponseBody |
| | | @LogSave(operationType = "消息管理", contain = "删除消息") |
| | | public CommonResult delete(@RequestParam("ids") List<Long> ids) { |