|
@@ -3,6 +3,7 @@ package com.gxzc.zen
|
|
|
import com.baomidou.mybatisplus.generator.AutoGenerator
|
|
|
import com.baomidou.mybatisplus.generator.config.DataSourceConfig
|
|
|
import com.baomidou.mybatisplus.generator.config.GlobalConfig
|
|
|
+import com.baomidou.mybatisplus.generator.config.PackageConfig
|
|
|
import com.baomidou.mybatisplus.generator.config.StrategyConfig
|
|
|
import com.baomidou.mybatisplus.generator.config.rules.DbType
|
|
|
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy
|
|
@@ -13,50 +14,67 @@ import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy
|
|
|
* @date 2018/1/24
|
|
|
* @url https://noahlan.me
|
|
|
*/
|
|
|
-class Generator {
|
|
|
+fun main(args: Array<String>) {
|
|
|
+ val mpg = AutoGenerator()
|
|
|
|
|
|
- fun main(args: Array<String>) {
|
|
|
- val mpg = AutoGenerator()
|
|
|
+ // 全局配置
|
|
|
+ val gc = GlobalConfig()
|
|
|
+ with(gc) {
|
|
|
+ outputDir = "D://Test"
|
|
|
+ isFileOverride = true
|
|
|
+ isActiveRecord = false
|
|
|
+ isEnableCache = false
|
|
|
+ isOpen = true
|
|
|
+ author = "NorthLan"
|
|
|
+ isKotlin = true
|
|
|
+ isBaseResultMap = true
|
|
|
+ mapperName = "%sDao"
|
|
|
+ xmlName = "%sDao"
|
|
|
+ serviceName = "I%sService"
|
|
|
+ serviceImplName = "%sServiceImpl"
|
|
|
+ }
|
|
|
+ mpg.globalConfig = gc
|
|
|
|
|
|
- // 全局配置
|
|
|
- val gc = GlobalConfig()
|
|
|
- with(gc) {
|
|
|
- outputDir = "D://Test"
|
|
|
- isFileOverride = true
|
|
|
- isActiveRecord = false
|
|
|
- isEnableCache = false
|
|
|
- isOpen = true
|
|
|
- author = "NorthLan"
|
|
|
- isKotlin = true
|
|
|
- isBaseResultMap = true
|
|
|
- mapperName = "%sDao"
|
|
|
- xmlName = "%sDao"
|
|
|
- serviceName = "I%sService"
|
|
|
- serviceImplName = "%sServiceImpl"
|
|
|
- }
|
|
|
- mpg.globalConfig = gc
|
|
|
+ // 数据源
|
|
|
+ val dataSource = DataSourceConfig()
|
|
|
+ with(dataSource) {
|
|
|
+ dbType = DbType.MYSQL
|
|
|
+ // typeConvert
|
|
|
+ driverName = "com.mysql.jdbc.Driver"
|
|
|
+ username = "root"
|
|
|
+ password = "root"
|
|
|
+ url = "jdbc:mysql://127.0.0.1:3306/rest?characterEncoding=utf8"
|
|
|
+ }
|
|
|
+ mpg.dataSource = dataSource
|
|
|
|
|
|
- // 数据源
|
|
|
- val dataSource = DataSourceConfig()
|
|
|
- with(dataSource) {
|
|
|
- dbType = DbType.MYSQL
|
|
|
- // typeConvert
|
|
|
- driverName = "com.mysql.jdbc.Driver"
|
|
|
- username = "root"
|
|
|
- password = "root"
|
|
|
- url = "jdbc:mysql://127.0.0.1:3306/rest?characterEncoding=utf8"
|
|
|
- }
|
|
|
- mpg.dataSource = dataSource
|
|
|
+ // 策略配置
|
|
|
+ val strategy = StrategyConfig()
|
|
|
+ with(strategy) {
|
|
|
+ setDbColumnUnderline(true)
|
|
|
+ isCapitalMode = false
|
|
|
+ naming = NamingStrategy.underline_to_camel
|
|
|
+ // setTablePrefix()
|
|
|
+ superEntityClass = "com.gxzc.zen.persistence.BaseModel"
|
|
|
+ setSuperEntityColumns("id", "createBy", "createTime", "updateBy", "updateTime", "remark", "enable")
|
|
|
+ superMapperClass = "com.gxzc.zen.persistence.BaseMapper"
|
|
|
+ superServiceClass = "com.gxzc.zen.persistence.BaseService"
|
|
|
+ superServiceImplClass = "com.baomidou.mybatisplus.service.impl.ServiceImpl"
|
|
|
+// superControllerClass = ""
|
|
|
+ setInclude("user")
|
|
|
+ isEntityBooleanColumnRemoveIsPrefix = true
|
|
|
+ logicDeleteFieldName = "enable"
|
|
|
+// setExclude("")
|
|
|
+ }
|
|
|
+ mpg.strategy = strategy
|
|
|
|
|
|
- // 策略配置
|
|
|
- val strategyConfig = StrategyConfig()
|
|
|
- with(strategyConfig) {
|
|
|
- setDbColumnUnderline(true)
|
|
|
- // setTablePrefix()
|
|
|
- naming = NamingStrategy.underline_to_camel
|
|
|
- setInclude("user")
|
|
|
- setExclude("")
|
|
|
- setSuperEntityClass("com.gxzc.zen.persistence.ZenBaseDao")
|
|
|
- }
|
|
|
+ // 包配置
|
|
|
+ val pc = PackageConfig()
|
|
|
+ with(pc) {
|
|
|
+ parent = "com.gxzc.zen.persistence"
|
|
|
+// moduleName = "test"
|
|
|
+ entity = "model"
|
|
|
}
|
|
|
-}
|
|
|
+ mpg.packageInfo = pc
|
|
|
+
|
|
|
+ mpg.execute()
|
|
|
+}
|