├── .gitignore ├── .idea ├── compiler.xml ├── emacs.xml ├── kotlinc.xml ├── libraries │ ├── KotlinJavaRuntime.xml │ └── commons_lang3_3_6.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── MybatisGenerator.iml ├── MybatisGenerator.zip ├── README.md ├── _config.yml ├── lib ├── commons-lang3-3.6.jar ├── kotlin-reflect.jar ├── kotlin-stdlib-jre7-sources.jar ├── kotlin-stdlib-jre7.jar ├── kotlin-stdlib-jre8-sources.jar ├── kotlin-stdlib-jre8.jar ├── kotlin-stdlib-sources.jar ├── kotlin-stdlib.jar ├── kotlin-test.jar └── mysql-connector-java-5.1.41.jar └── src └── main ├── java └── com │ └── yangyang │ └── mybatis │ └── generator │ ├── MyConstant.kt │ ├── actions │ ├── ActionConfigPath.kt │ ├── ActionConfigureDB.kt │ ├── ActionGenerate.kt │ └── ActionGroupMybatis.kt │ └── utils │ ├── NotificationUtil.kt │ ├── PlatformUtil.kt │ ├── UIUtil.kt │ └── mybatis │ ├── MyBatisGenConst.kt │ └── MybatisCore.kt └── resources ├── META-INF └── plugin.xml ├── icons ├── ic_mybatis.png └── ic_mybatis@2x.png └── template ├── base ├── baseCriteria.txt ├── baseQuery.txt ├── criteria.txt └── pageResult.txt ├── do.txt ├── manager.txt ├── managerImpl.txt ├── mapper-ext.txt ├── mapper.txt ├── query.txt ├── sqlmap-ext.txt └── sqlmap.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/emacs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.idea/emacs.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/libraries/KotlinJavaRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.idea/libraries/KotlinJavaRuntime.xml -------------------------------------------------------------------------------- /.idea/libraries/commons_lang3_3_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.idea/libraries/commons_lang3_3_6.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /MybatisGenerator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/MybatisGenerator.iml -------------------------------------------------------------------------------- /MybatisGenerator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/MybatisGenerator.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/_config.yml -------------------------------------------------------------------------------- /lib/commons-lang3-3.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/lib/commons-lang3-3.6.jar -------------------------------------------------------------------------------- /lib/kotlin-reflect.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jre7-sources.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jre7.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jre8-sources.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jre8.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kotlin-stdlib-sources.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kotlin-stdlib.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kotlin-test.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mysql-connector-java-5.1.41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/lib/mysql-connector-java-5.1.41.jar -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/MyConstant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/MyConstant.kt -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/actions/ActionConfigPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/actions/ActionConfigPath.kt -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/actions/ActionConfigureDB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/actions/ActionConfigureDB.kt -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/actions/ActionGenerate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/actions/ActionGenerate.kt -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/actions/ActionGroupMybatis.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/actions/ActionGroupMybatis.kt -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/utils/NotificationUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/utils/NotificationUtil.kt -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/utils/PlatformUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/utils/PlatformUtil.kt -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/utils/UIUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/utils/UIUtil.kt -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/utils/mybatis/MyBatisGenConst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/utils/mybatis/MyBatisGenConst.kt -------------------------------------------------------------------------------- /src/main/java/com/yangyang/mybatis/generator/utils/mybatis/MybatisCore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/java/com/yangyang/mybatis/generator/utils/mybatis/MybatisCore.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/icons/ic_mybatis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/icons/ic_mybatis.png -------------------------------------------------------------------------------- /src/main/resources/icons/ic_mybatis@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/icons/ic_mybatis@2x.png -------------------------------------------------------------------------------- /src/main/resources/template/base/baseCriteria.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/base/baseCriteria.txt -------------------------------------------------------------------------------- /src/main/resources/template/base/baseQuery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/base/baseQuery.txt -------------------------------------------------------------------------------- /src/main/resources/template/base/criteria.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/base/criteria.txt -------------------------------------------------------------------------------- /src/main/resources/template/base/pageResult.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/base/pageResult.txt -------------------------------------------------------------------------------- /src/main/resources/template/do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/do.txt -------------------------------------------------------------------------------- /src/main/resources/template/manager.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/manager.txt -------------------------------------------------------------------------------- /src/main/resources/template/managerImpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/managerImpl.txt -------------------------------------------------------------------------------- /src/main/resources/template/mapper-ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/mapper-ext.txt -------------------------------------------------------------------------------- /src/main/resources/template/mapper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/mapper.txt -------------------------------------------------------------------------------- /src/main/resources/template/query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/query.txt -------------------------------------------------------------------------------- /src/main/resources/template/sqlmap-ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/sqlmap-ext.txt -------------------------------------------------------------------------------- /src/main/resources/template/sqlmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maihaoche/mybatis-generator-plugin/HEAD/src/main/resources/template/sqlmap.txt --------------------------------------------------------------------------------