Commit 2ef0e060 authored by 王业雄's avatar 王业雄

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

parents f57f8883 a37e56be
package com.quantgroup.asset.distribution.controller;
import com.alibaba.fastjson.JSONObject;
import com.quantgroup.asset.distribution.enums.response.AssetResponse;
import com.quantgroup.asset.distribution.enums.response.MiddleOfficeCommonResponseEnum;
import com.quantgroup.asset.distribution.model.response.GlobalResponse;
......@@ -8,10 +9,14 @@ import com.quantgroup.asset.distribution.service.newrule.pojo.funds.FundCallBack
import com.quantgroup.asset.distribution.service.newrule.third.AuditResponce;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections.CollectionUtils;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import javax.validation.Valid;
/**
* @author shihuajun
* @date 2021/9/1 15:09
......@@ -26,6 +31,7 @@ public class NewAssertController {
@RequestMapping("/core/asset_handler")
public GlobalResponse assetsHandler(@RequestBody @Valid AuditResponce auditResponce) {
log.info("风控通知审核结果:{}", JSONObject.toJSONString(auditResponce));
coreFilter.coreHandle(auditResponce);
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