1234567891011121314151617 |
- package ${package};
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.${outputArea}.entity.${entityClass};
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: ${tableComment}
- * @Author ${author}
- * @Date: ${date}
- * @Version 1.0
- */
- @Mapper
- public interface ${entityClass}Mapper extends MPJBaseMapper<${entityClass}> {
- }
|