提交小修改!

This commit is contained in:
Kane Wang 2022-03-27 20:54:06 +08:00
parent 050edac28a
commit 4e1ca52d2f
2 changed files with 14 additions and 7 deletions

View File

@ -2,5 +2,11 @@
"tns_name": "xmcx1", "tns_name": "xmcx1",
"ip_addr": "10.39.0.86", "ip_addr": "10.39.0.86",
"user_name": "", "user_name": "",
"password": "" "password": "",
"tables": [
{
"table_name": "",
"table_description": ""
}
]
} }

View File

@ -1,12 +1,13 @@
package com.cpic.xim.config.db; package com.cpic.xim.config.db;
import java.util.Map; import java.util.Vector;
public class OracleConfig public class OracleConfig
{ {
private String tnsName; private String tnsName;
private String ipAddr; private String ipAddr;
private String jdbcURL;
private String userName; private String userName;
private String password; private String password;
private Map<String, String> tables; private Vector<DBTable> tables;
} }