leomon
2025-05-20 a0adf52a33e382d070936fc4d3d58a27bc419690
oying-system/src/main/java/com/oying/modules/message/rest/MessageSystemController.java
@@ -18,9 +18,9 @@
import com.oying.utils.PageResult;
/**
* @author 李萌
* @date 2025-05-14
**/
 * @author 李萌
 * @date 2025-05-20
 **/
@RestController
@RequiredArgsConstructor
@Api(tags = "消息_系统")
@@ -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);
    }