You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dsl3/service/ExceptionLogService.java

14 lines
660 B

package com.aurora.service;
import com.aurora.model.dto.ExceptionLogDTO;
import com.aurora.entity.ExceptionLog;
import com.aurora.model.vo.ConditionVO;
import com.aurora.model.dto.PageResultDTO;
import com.baomidou.mybatisplus.extension.service.IService;
//主要用于处理异常日志的查询、分页展示等核心业务逻辑,通常与全局异常处理器或 AOP 切面配合使用
public interface ExceptionLogService extends IService<ExceptionLog> {
//分页获取异常日志列表(支持条件查询,通常用于后台管理系统的日志查看界面)
PageResultDTO<ExceptionLogDTO> listExceptionLogs(ConditionVO conditionVO);
}