|
|
@@ -25,8 +25,8 @@ public interface SecondRiskControlRecordMapper extends BaseMapper<SecondRiskCont
|
|
|
" case when r.rule_type = 1 or r.rule_type = 2 then '中风险' when r.rule_type = 3 or r.rule_type = 4 then '高风险' end ruleRisk, " +
|
|
|
" case when r.risk_status = 0 then '待处理' when r.risk_status = 1 then '已处理' " +
|
|
|
" when r.risk_status = 2 then '已忽略' end riskStatusName, " +
|
|
|
- " case when r.rule_type = 1 or r.rule_type = 3 then u.user_phone " +
|
|
|
- " when r.rule_type = 2 then '账号异常' when r.rule_type = 3 then '交易欺诈'end userPhone " +
|
|
|
+ " case when r.rule_type = 1 or r.rule_type = 3 or r.rule_type = 4 then u.user_phone " +
|
|
|
+ " else '--' end userPhone " +
|
|
|
" from second_risk_control_record r left join life_user u on r.user_id = u.id " +
|
|
|
" ${ew.customSqlSegment} ")
|
|
|
IPage<SecondRiskControlRecordVo> queryRiskControlRecords(IPage<SecondRiskControlRecordVo> page, @Param(Constants.WRAPPER) QueryWrapper<SecondRiskControlRecordVo> queryWrapper);
|