|
@@ -1,8 +1,10 @@
|
|
|
package com.gxzc.zen
|
|
|
|
|
|
import com.baomidou.mybatisplus.generator.AutoGenerator
|
|
|
+import com.baomidou.mybatisplus.generator.InjectionConfig
|
|
|
import com.baomidou.mybatisplus.generator.config.*
|
|
|
import com.baomidou.mybatisplus.generator.config.converts.MySqlTypeConvert
|
|
|
+import com.baomidou.mybatisplus.generator.config.po.TableInfo
|
|
|
import com.baomidou.mybatisplus.generator.config.rules.DbColumnType
|
|
|
import com.baomidou.mybatisplus.generator.config.rules.DbType
|
|
|
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy
|
|
@@ -14,76 +16,96 @@ import java.io.File
|
|
|
* @date 2018/1/24
|
|
|
* @url https://noahlan.me
|
|
|
*/
|
|
|
-fun main(args: Array<String>) {
|
|
|
+
|
|
|
+fun generate(isKotlin: Boolean, author: String, pkgType: String, dataSourceConfig: DataSourceConfig) {
|
|
|
val mpg = AutoGenerator()
|
|
|
|
|
|
val path = File("zen-api").absolutePath
|
|
|
|
|
|
// 全局配置
|
|
|
- val gc = GlobalConfig()
|
|
|
- with(gc) {
|
|
|
- outputDir = path + "/src/main/kotlin"
|
|
|
- isFileOverride = true
|
|
|
- isActiveRecord = false
|
|
|
- isEnableCache = false
|
|
|
- isOpen = false
|
|
|
- author = "NorthLan"
|
|
|
- isKotlin = true
|
|
|
- isBaseResultMap = true
|
|
|
- mapperName = "%sMapper"
|
|
|
- xmlName = "%sMapper"
|
|
|
- serviceName = "I%sService"
|
|
|
- serviceImplName = "%sServiceImpl"
|
|
|
+ mpg.globalConfig = GlobalConfig().also {
|
|
|
+ it.outputDir = if (isKotlin) {
|
|
|
+ "$path/src/main/kotlin"
|
|
|
+ } else {
|
|
|
+ "$path/src/main/java"
|
|
|
+ }
|
|
|
+ it.isFileOverride = true
|
|
|
+ it.isActiveRecord = false
|
|
|
+ it.isEnableCache = false
|
|
|
+ it.isOpen = false
|
|
|
+ it.author = author
|
|
|
+ it.isKotlin = isKotlin
|
|
|
+ it.isBaseResultMap = true
|
|
|
+ it.isBaseColumnList = false
|
|
|
+ it.mapperName = "%sMapper"
|
|
|
+ it.xmlName = "%sMapper"
|
|
|
+ it.serviceName = "I%sService"
|
|
|
+ it.serviceImplName = "%sServiceImpl"
|
|
|
}
|
|
|
- mpg.globalConfig = gc
|
|
|
|
|
|
// 数据源
|
|
|
- val dataSource = DataSourceConfig()
|
|
|
- with(dataSource) {
|
|
|
- dbType = DbType.MYSQL
|
|
|
-// typeConvert = object :MySqlTypeConvert(){
|
|
|
-// override fun processTypeConvert(fieldType: String?): DbColumnType {
|
|
|
-// if(fieldType == "tinyint"){
|
|
|
-// return DbColumnType.BOOLEAN
|
|
|
-// }
|
|
|
-// return super.processTypeConvert(fieldType)
|
|
|
-// }
|
|
|
-// }
|
|
|
- driverName = "com.mysql.jdbc.Driver"
|
|
|
- username = "root"
|
|
|
- password = "root"
|
|
|
- url = "jdbc:mysql://127.0.0.1:3306/archives_rec?characterEncoding=utf8"
|
|
|
- }
|
|
|
- mpg.dataSource = dataSource
|
|
|
+ mpg.dataSource = dataSourceConfig
|
|
|
|
|
|
// 策略配置
|
|
|
- val strategy = StrategyConfig()
|
|
|
- with(strategy) {
|
|
|
- setDbColumnUnderline(true)
|
|
|
- isCapitalMode = false
|
|
|
- naming = NamingStrategy.underline_to_camel
|
|
|
+ mpg.strategy = StrategyConfig().also {
|
|
|
+ it.setDbColumnUnderline(true)
|
|
|
+ it.isCapitalMode = false
|
|
|
+ it.naming = NamingStrategy.underline_to_camel
|
|
|
// setTablePrefix()
|
|
|
- superEntityClass = "com.gxzc.zen.common.base.BaseModel"
|
|
|
- setSuperEntityColumns("id", "create_by", "create_time", "update_by", "update_time", "remark", "enable")
|
|
|
- superMapperClass = "com.gxzc.zen.common.base.BaseMapper"
|
|
|
- superServiceClass = "com.gxzc.zen.common.base.BaseService"
|
|
|
- superServiceImplClass = "com.baomidou.mybatisplus.service.impl.ServiceImpl"
|
|
|
+ it.superEntityClass = "com.gxzc.zen.common.base.BaseModel"
|
|
|
+ it.setSuperEntityColumns("id", "create_by", "create_time", "update_by", "update_time", "remark", "enable")
|
|
|
+ it.superMapperClass = "com.gxzc.zen.common.base.BaseMapper"
|
|
|
+ it.superServiceClass = "com.gxzc.zen.common.base.BaseService"
|
|
|
+ it.superServiceImplClass = "com.baomidou.mybatisplus.service.impl.ServiceImpl"
|
|
|
// superControllerClass = ""
|
|
|
// setInclude("user")
|
|
|
- isEntityBooleanColumnRemoveIsPrefix = true
|
|
|
- logicDeleteFieldName = "enable"
|
|
|
+ it.isEntityBooleanColumnRemoveIsPrefix = true
|
|
|
+ it.logicDeleteFieldName = "enable"
|
|
|
// setExclude("")
|
|
|
}
|
|
|
- mpg.strategy = strategy
|
|
|
|
|
|
// 包配置
|
|
|
- val pc = PackageConfig()
|
|
|
- with(pc) {
|
|
|
- parent = "com.gxzc.zen.api.bus"
|
|
|
-// moduleName = "zen-orm"
|
|
|
- entity = "model"
|
|
|
+ mpg.packageInfo = PackageConfig().also {
|
|
|
+ it.parent = "com.gxzc.zen.api.$pkgType"
|
|
|
+ it.entity = "model"
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ val cfg = object : InjectionConfig() {
|
|
|
+ override fun initMap() {
|
|
|
+ }
|
|
|
+ }.also {
|
|
|
+ it.fileOutConfigList = ArrayList<FileOutConfig>().also {
|
|
|
+ it.add(object : FileOutConfig("/templates/mapper.xml.vm") {
|
|
|
+ override fun outputFile(tableInfo: TableInfo?): String {
|
|
|
+ return "$path/src/main/resources/mapping/$pkgType/${tableInfo?.mapperName}.xml"
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ mpg.cfg = cfg
|
|
|
+
|
|
|
+ mpg.template = TemplateConfig().also {
|
|
|
+ it.controller = null // 不生成controller
|
|
|
+ it.xml = null
|
|
|
}
|
|
|
- mpg.packageInfo = pc
|
|
|
|
|
|
mpg.execute()
|
|
|
}
|
|
|
+
|
|
|
+fun main(args: Array<String>) {
|
|
|
+ generate(false, "NorthLan", "bus", DataSourceConfig().also {
|
|
|
+ it.dbType = DbType.MYSQL
|
|
|
+ it.typeConvert = object : MySqlTypeConvert() {
|
|
|
+ override fun processTypeConvert(fieldType: String?): DbColumnType {
|
|
|
+
|
|
|
+ return super.processTypeConvert(fieldType)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ it.driverName = "com.mysql.jdbc.Driver"
|
|
|
+ it.username = "root"
|
|
|
+ it.password = "root"
|
|
|
+ it.url = "jdbc:mysql://127.0.0.1:3306/archives_rec?characterEncoding=utf8"
|
|
|
+ })
|
|
|
+}
|