/**
* 向网关发送请求
* @param url 请求路径
* @param packet 请求参数 xml格式
* @return
* @throws Exception
*/
public List<Map<String, String>> getKdgsDBQueryRecord(String url, String packet) throws Exception {
ResponseEntity<String> response = null;
HttpEntity<String> request = new HttpEntity<>(packet);
try {
URI uri = URI.create(url);
response = HttpInvoker.getInstance(