feat: 登录界面美化,图层控制功能添加

This commit is contained in:
2023-04-28 18:16:24 +08:00
parent 3eed9bad33
commit db9b248d92
29 changed files with 427 additions and 69 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
}