# mybatisGenerator **Repository Path**: th7-tech/mybatisGenerator ## Basic Information - **Project Name**: mybatisGenerator - **Description**: 使用mybatis 生成带分页的查询, - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-09-05 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mybatisGenerator 使用mybatis 生成带分页的查询, 将lib包下的jar包添加到classpath中 修改 PaginationPlugin.java中的baseDir路径 在生成的example中增加构造函数 如下 public class CarInfoExample extends AbstractExample { //手动增加 ---start public CarInfoExample(Pageable pageable) { super(pageable); oredCriteria = new ArrayList(); } //手动增加 ---end ... }