| | |
| | | |
| | | @ApiOperation(value = "新增会议记录参会人员") |
| | | @PostMapping("/add") |
| | | public Result addParticipants(List<ManageMeetingParticipants> list){ |
| | | public Result addParticipants(@RequestBody List<ManageMeetingParticipants> list){ |
| | | manageMeetingParticipantsService.saveBatch(list); |
| | | return Result.success(); |
| | | } |
| | | |
| | | @ApiOperation(value = "删除会议记录参会人员") |
| | | @DeleteMapping("/delete") |
| | | public Result deleteParticipants(List<Integer> ids){ |
| | | public Result deleteParticipants(@RequestBody List<Integer> ids){ |
| | | manageMeetingParticipantsService.removeByIds(ids); |
| | | return Result.success(); |
| | | } |