This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.aurora.mapper;
import com.aurora.entity.ExceptionLog;// 导入异常日志实体类ExceptionLog,该实体类与数据库中的异常日志表相对应
import com.baomidou.mybatisplus.core.mapper.BaseMapper;// 导入MyBatis-Plus的核心接口BaseMapper,它提供了丰富的CRUD(增删改查)操作方法
import org.springframework.stereotype.Repository;
@Repository
// 定义ExceptionLogMapper接口,继承自MyBatis-Plus的BaseMapper接口
// 泛型参数ExceptionLog指定了该Mapper操作的实体类型
// 继承BaseMapper后,无需编写任何方法实现或XML映射文件,即可获得完整的CRUD功能
public interface ExceptionLogMapper extends BaseMapper<ExceptionLog> {//异常日志模块的数据访问层接口
}