Commit e10f1890 authored by 杨钧's avatar 杨钧

增加xyqb接口调用

parent 75db6237
......@@ -13,7 +13,7 @@ public enum OrderFieldEnum {
PREMIUM("premium","应还保费"),
OVERDUE_INTEREST("overDueInterest","应还罚息"),
LIQUIDATE_DAMAGES("liquidatedDamages","结清违约金"),
OTHERFEE("otherFee","应还其他费用"),
OTHER_FEE("otherFee","应还其他费用"),
TOTAL_AMOUNT("totalAmount","应还总额"),
OTHER("other","其他收费项目");
......
......@@ -337,9 +337,9 @@ public class OrderServiceImpl implements IOrderService {
return JsonResult.buildErrorStateResult("获取试算结果失败", null);
}
List<Map<String, Object>> datas = dealWithFieldAndTitle(jsonResult.getData());
log.info("{} 试算对象 data={},试算后返回 datas:{}", logPre, jsonResult.getData(), datas);
return JsonResult.buildSuccessResult("处理成功", datas);
List<Map<String, Object>> data = dealWithFieldAndTitle(jsonResult.getData());
log.info("{} 试算对象 data={},试算后返回 datas:{}", logPre, jsonResult.getData(), data);
return JsonResult.buildSuccessResult("处理成功", data);
}
/**
......
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