123456789101112131415161718 |
- package com.dt.common.mapper;
- import com.dt.common.domain.Notice;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- /**
- * @author sunday
- * @description 针对表【notice(通知公告表)】的数据库操作Mapper
- * @createDate 2025-07-01 16:33:35
- * @Entity com.dt.common.domain.Notice
- */
- public interface NoticeMapper extends BaseMapper<Notice> {
- }
|