| 1234567891011121314 |
- package com.ruoyi.system.mapper;
- import com.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
- import com.ruoyi.system.domain.SysNotice;
- import com.ruoyi.system.domain.vo.SysNoticeVo;
- /**
- * 通知公告表 数据层
- *
- * @author Lion Li
- */
- public interface SysNoticeMapper extends BaseMapperPlus<SysNoticeMapper, SysNotice, SysNoticeVo> {
- }
|