- package com.zhongzheng.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.zhongzheng.entity.OfficialArticle;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 文章菜单mapper
- *
- * @author zhongzheng
- */
- @Mapper
- public interface OfficialArticleMapper extends BaseMapper<OfficialArticle> {
- }
|