Merge branch 'master' of gitlab.navinfo.com:CollectVehicle/OneMapQS

This commit is contained in:
squallzhjch
2023-05-04 14:18:33 +08:00
31 changed files with 437 additions and 71 deletions

View File

@@ -3,10 +3,13 @@ package com.navinfo.omqs.bean
class ImportConfig {
var tables: MutableList<TableInfo> = mutableListOf()
val tableGroupName: String = "OMDB数据"
var checked : Boolean = true
}
class TableInfo {
val table: String = ""
val code: Int = 0
val name: String = ""
var checked : Boolean = true
}