fix: 生成json

This commit is contained in:
2023-04-19 17:32:44 +08:00
parent 7ea778780c
commit 0a9376d398
3 changed files with 94 additions and 10 deletions

View File

@@ -1,5 +1,12 @@
package com.navinfo.omqs.bean
class ImportConfig {
var tables: MutableList<String> = mutableListOf()
var tables: MutableList<TableInfo> = mutableListOf()
}
class TableInfo {
val table: String = ""
val code: Int = 0
val name: String = ""
}