SDK的getStockInfo方法底层没有传递type参数,导致查询结果永远为空
public Object getStockInfo(String region, String code) throws Exception {
Map<String, String> params = new HashMap<>();
params.put("region", region);
params.put("code", code);
return get("/stock/info", params, Object.class);
}
SDK的getStockInfo方法底层没有传递type参数,导致查询结果永远为空
public Object getStockInfo(String region, String code) throws Exception {
Map<String, String> params = new HashMap<>();
params.put("region", region);
params.put("code", code);
return get("/stock/info", params, Object.class);
}