Authored by caoyan

增加超时时间

... ... @@ -258,7 +258,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService {
bo.setExpressCompanyId(req.getExpressCompanyId());
bo.setWayBillCode(req.getWaybillCode());
bo.setDepotNum(req.getDepotNo());
JSONObject jsonObject = serviceCaller.call(args, bo, JSONObject.class);
JSONObject jsonObject = serviceCaller.asyncCall(args, bo, JSONObject.class).get(5);
LOGGER.info("call orderAppraise result is {}", jsonObject.toJSONString());
if(jsonObject.getIntValue("code") != 200) {
return 0;
... ...