Compare commits

..

2 Commits

Author SHA1 Message Date
6b2467eb9a 修改了放心签名的认证方式 2025-08-06 15:25:54 +08:00
4767df4073 修改了排序 2025-08-06 11:59:46 +08:00
4 changed files with 23 additions and 1 deletions

View File

@ -31,6 +31,21 @@ public class Personal extends Base {
return result;
}
// 实名认证失败-切换为银行卡四要素认证
if (result.getCode() == 50008){
r.setAuthType("2");
jsonBody = JSONUtil.toJsonStr(r);
log.info("获取app数据参数:{}",jsonBody);
response = postJson(url,jsonBody,null);
result = JSONUtil.toBean(response, RegisterResponse.class);
if (result.getCode() != 10000) {
if (result.getCode() == 50005) {
return result;
}
}
}
if (!Objects.equals(result.getMessage(), "")){
throw new BusinessException(result.getMessage());
}else{

View File

@ -38,4 +38,10 @@ public class RegisterRequest {
* 1允许默认
*/
private String allowModify = "0";
/**
* 银行卡号
* 当实名认证方式设置为2时必传
*/
private String bankCardNo;
}

View File

@ -160,6 +160,7 @@ public class ExpertFxqService {
r.setName(casePlatformBank.getIdCardName());
r.setMobile(expert.getMobile());
r.setIdentNo(casePlatformBank.getIdCardNo());
r.setBankCardNo(casePlatformBank.getBankCardNo());
RegisterResponse personalRegister = personal.register(r);
String unionId = "";

View File

@ -8,7 +8,7 @@ import net.lab1024.sa.common.common.domain.PageParam;
public class StatisticsExpertQueryForm extends PageParam {
@ApiModelProperty(value = "排序")
private int sort;
private int sort = 0;
@ApiModelProperty(value = "省份")
private Long provId;