Commit b2f7e8e8 authored by liwenbin's avatar liwenbin

fix

parent 6d431e95
......@@ -214,11 +214,13 @@ public class AidFundRouteServiceImpl implements IAidFundRouteService {
QGPreconditions.checkArgument(asset.getUserLoanType() != null, QGExceptionType.USER_LOAN_TYPE_IS_EMPTY, asset.getUuid());
if (asset.getUserLoanType() == UserLoanType.FIRST_APPLY.getCode() || asset.getUserLoanType() == UserLoanType.RE_APPLY.getCode()) {
// 同盾分拒绝的不推
Integer tongdun_v2_1_bucket = Integer.parseInt(String.valueOf(data.get("model_exec_data_source#tongdun_v2_1_bucket")));
if (tongdun_v2_1_bucket != null && (tongdun_v2_1_bucket < 1 || tongdun_v2_1_bucket > 185)) {
log.info("助贷资方导流, 用户命中二次校验规则, 不进行导流, uuid : {}, fundId : {}, fundProId : {}, tongdunScore : {}",
asset.getUuid(), aidLoanFundConfig.getFundId(), aidLoanFundConfig.getFundProductId(), tongdun_v2_1_bucket);
return false;
if (data.get("model_exec_data_source#tongdun_v2_1_bucket") != null) {
Integer tongdun_v2_1_bucket = Integer.parseInt(String.valueOf(data.get("model_exec_data_source#tongdun_v2_1_bucket")));
if (tongdun_v2_1_bucket != null && (tongdun_v2_1_bucket < 1 || tongdun_v2_1_bucket > 185)) {
log.info("助贷资方导流, 用户命中二次校验规则, 不进行导流, uuid : {}, fundId : {}, fundProId : {}, tongdunScore : {}",
asset.getUuid(), aidLoanFundConfig.getFundId(), aidLoanFundConfig.getFundProductId(), tongdun_v2_1_bucket);
return false;
}
}
}
}
......
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