Commit 5f1738a0 authored by 王业雄's avatar 王业雄

Merge remote-tracking branch 'origin/fund_route' into fund_route

parents 489632cd 100f75a3
......@@ -32,7 +32,11 @@ public class NewAssertController {
@RequestMapping("/core/asset_handler")
public GlobalResponse assetsHandler(@RequestBody @Valid AuditResponce auditResponce) {
log.info("风控通知审核结果:{}", JSONObject.toJSONString(auditResponce));
coreFilter.coreHandle(auditResponce);
try {
coreFilter.coreHandle(auditResponce);
} catch (Exception e) {
return GlobalResponse.error(e.getMessage());
}
return GlobalResponse.create(AssetResponse.SUCCESS);
}
......
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