Commit c316bf7c authored by Quxl's avatar Quxl

x

parent 717e5ac1
...@@ -55,7 +55,7 @@ public class Express { ...@@ -55,7 +55,7 @@ public class Express {
Map<String, String> headers = this.getHeaders(); Map<String, String> headers = this.getHeaders();
Map<String, String> queryParams = new HashMap<String, String>(); Map<String, String> queryParams = new HashMap<String, String>();
queryParams.put("number", sExpressNO.trim()); queryParams.put("number", sExpressNO.trim());
queryParams.put("type", sExpressType == null ? "" : sExpressType.trim()); queryParams.put("type", sExpressType == null ? "auto" : sExpressType.trim());
String result = HttpUtil.get(url, queryParams, headers); String result = HttpUtil.get(url, queryParams, headers);
logger.debug(result); logger.debug(result);
JSONObject jsonObject = null; JSONObject jsonObject = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment