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/FriendLinkMapper.java

11 lines
499 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;
// 实体类中的字段通常与数据库表字段一一映射包含友链的基本信息如名称、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> {//友链模块的数据访问层接口
}