|
@@ -17,7 +17,7 @@ import java.io.File
|
|
* @url https://noahlan.me
|
|
* @url https://noahlan.me
|
|
*/
|
|
*/
|
|
fun main(args: Array<String>) {
|
|
fun main(args: Array<String>) {
|
|
- generate(true, "NorthLan", "sys", DataSourceConfig().also {
|
|
|
|
|
|
+ generate(true, "NorthLan", "bus", DataSourceConfig().also {
|
|
it.dbType = DbType.MYSQL
|
|
it.dbType = DbType.MYSQL
|
|
it.typeConvert = object : MySqlTypeConvert() {
|
|
it.typeConvert = object : MySqlTypeConvert() {
|
|
override fun processTypeConvert(fieldType: String?): DbColumnType {
|
|
override fun processTypeConvert(fieldType: String?): DbColumnType {
|
|
@@ -25,12 +25,12 @@ fun main(args: Array<String>) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
it.driverName = "com.mysql.jdbc.Driver"
|
|
it.driverName = "com.mysql.jdbc.Driver"
|
|
- it.username = "archives"
|
|
|
|
- it.password = "archives"
|
|
|
|
- it.url = "jdbc:mysql://192.168.1.124:3307/archives_sys?characterEncoding=utf8"
|
|
|
|
-// it.url = "jdbc:mysql://127.0.0.1:3306/archives_mgr?characterEncoding=utf8"
|
|
|
|
-// it.username = "root"
|
|
|
|
-// it.password = "root"
|
|
|
|
|
|
+// it.username = "archives"
|
|
|
|
+// it.password = "archives"
|
|
|
|
+// it.url = "jdbc:mysql://192.168.1.124:3307/archives_sys?characterEncoding=utf8"
|
|
|
|
+ it.url = "jdbc:mysql://127.0.0.1:3306/archives_mgr?characterEncoding=utf8"
|
|
|
|
+ it.username = "root"
|
|
|
|
+ it.password = "root"
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
@@ -113,6 +113,8 @@ fun generate(isKotlin: Boolean, author: String, pkgType: String, dataSourceConfi
|
|
mpg.template = TemplateConfig().also {
|
|
mpg.template = TemplateConfig().also {
|
|
it.controller = null // 不生成controller
|
|
it.controller = null // 不生成controller
|
|
it.xml = null
|
|
it.xml = null
|
|
|
|
+ // it.service = null
|
|
|
|
+// it.mapper = null
|
|
}
|
|
}
|
|
|
|
|
|
mpg.execute()
|
|
mpg.execute()
|