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;
// 导入操作日志实体类OperationLog,该实体类与数据库中的操作日志表(如operate_log)相对应
// 实体类中的字段(如id、operateTime、className等)与数据库表字段一一映射
import com.aurora.entity.OperationLog;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
@Repository
public interface OperationLogMapper extends BaseMapper<OperationLog> {
//OperationLog实体类通常用于记录系统操作日志(如用户行为、后台管理操作)
}