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/mapper/ExceptionLogMapper.java

14 lines
759 B

This file contains ambiguous Unicode characters!

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> {//异常日志模块的数据访问层接口
}