blob: abb0c25357a879251d703990ca211672e356b6bb [file] [log] [blame]
xiukira687b9cb2025-05-29 15:15:02 +08001package com.g9.g9backend.mapper;
2
3import com.baomidou.mybatisplus.core.mapper.BaseMapper;
4import com.g9.g9backend.pojo.Comment;
5import org.apache.ibatis.annotations.Mapper;
6
7@Mapper
8public interface CommentMapper extends BaseMapper<Comment> {
9}