oying-system/src/main/java/com/oying/modules/message/rest/MessageSystemController.java
@@ -19,7 +19,7 @@ /** * @author 李萌 * @date 2025-05-14 * @date 2025-05-20 **/ @RestController @RequiredArgsConstructor @@ -66,7 +66,7 @@ @Log("删除消息_系统") @ApiOperation("删除消息_系统") @PreAuthorize("@el.check('messageSystem:del')") public ResponseEntity<Object> deleteMessageSystem(@ApiParam(value = "传ID数组[]") @RequestBody List<Long> ids) { public ResponseEntity<Object> deleteMessageSystem(@ApiParam(value = "传ID数组[]") @RequestBody List<Integer> ids) { messageSystemService.deleteAll(ids); return new ResponseEntity<>(HttpStatus.OK); }