zhuo
2025-02-21 98154abb1b191d8a353417709ea1afc9984e1864
cnas-manage/src/main/java/com/ruoyi/manage/controller/ManageMeetingParticipantsController.java
@@ -38,14 +38,14 @@
    @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();
    }