blob: 2eebdeb19dd619ca65817dd10ef257c6ef5cd30f [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.Notification;
5import org.apache.ibatis.annotations.Mapper;
6
7@Mapper
8public interface NotificationMapper extends BaseMapper<Notification> {
9}