Commit dae2301a authored by yexiong.wang's avatar yexiong.wang

fix

parent bb1d895b
......@@ -67,7 +67,7 @@ public class VccServiceImpl implements IVccService {
@Override
public JsonResult queryPage(UserPreRepayInfoQuery query) throws Exception{
String url = talosHttp + "/vcc/offline_pre_repay/query_page";
Map param = GSON.fromJson(GSON.toJson(query), Map.class);
JSONObject param = JSONObject.parseObject(GSON.toJson(query));
log.info("queryPage | 开始请求talos获取预还款的详情,param={}",param);
String post = httpService.post(url, param);
log.info("queryPage | 请求talos结束,param={},result={}",param,post);
......
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