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;
// 实体类中的字段通常与数据库表字段一一映射,包含友链的基本信息如名称、URL等
import com.aurora.entity.FriendLink;//导入友情链接实体类FriendLink,该实体类与数据库中的友情链接表相对应
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
@Repository
public interface FriendLinkMapper extends BaseMapper<FriendLink> {//友链模块的数据访问层接口
}