Compare commits
No commits in common. "6b2467eb9ab66bb25d5b696e42696940036a8858" and "a0aa28ee88e017a67ceaa17c0d32eb0088782ff8" have entirely different histories.
6b2467eb9a
...
a0aa28ee88
@ -31,21 +31,6 @@ public class Personal extends Base {
|
|||||||
return result;
|
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(), "")){
|
if (!Objects.equals(result.getMessage(), "")){
|
||||||
throw new BusinessException(result.getMessage());
|
throw new BusinessException(result.getMessage());
|
||||||
}else{
|
}else{
|
||||||
|
|||||||
@ -38,10 +38,4 @@ public class RegisterRequest {
|
|||||||
* 1:允许(默认)
|
* 1:允许(默认)
|
||||||
*/
|
*/
|
||||||
private String allowModify = "0";
|
private String allowModify = "0";
|
||||||
|
|
||||||
/**
|
|
||||||
* 银行卡号
|
|
||||||
* 当实名认证方式设置为2时必传
|
|
||||||
*/
|
|
||||||
private String bankCardNo;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -160,7 +160,6 @@ public class ExpertFxqService {
|
|||||||
r.setName(casePlatformBank.getIdCardName());
|
r.setName(casePlatformBank.getIdCardName());
|
||||||
r.setMobile(expert.getMobile());
|
r.setMobile(expert.getMobile());
|
||||||
r.setIdentNo(casePlatformBank.getIdCardNo());
|
r.setIdentNo(casePlatformBank.getIdCardNo());
|
||||||
r.setBankCardNo(casePlatformBank.getBankCardNo());
|
|
||||||
RegisterResponse personalRegister = personal.register(r);
|
RegisterResponse personalRegister = personal.register(r);
|
||||||
|
|
||||||
String unionId = "";
|
String unionId = "";
|
||||||
|
|||||||
@ -8,7 +8,7 @@ import net.lab1024.sa.common.common.domain.PageParam;
|
|||||||
public class StatisticsExpertQueryForm extends PageParam {
|
public class StatisticsExpertQueryForm extends PageParam {
|
||||||
|
|
||||||
@ApiModelProperty(value = "排序")
|
@ApiModelProperty(value = "排序")
|
||||||
private int sort = 0;
|
private int sort;
|
||||||
|
|
||||||
@ApiModelProperty(value = "省份")
|
@ApiModelProperty(value = "省份")
|
||||||
private Long provId;
|
private Long provId;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user