|
|
@@ -335,6 +335,9 @@ public class TransferFuncServiceImpl implements TransferFuncService {
|
|
|
if (alipayResponse.getSubMsg().contains("冻结")) {
|
|
|
return GatewayResponse.FAIL.newBuilder().setMsg("目前财务清账中,48小时后可提现").toResult();
|
|
|
}
|
|
|
+ if (alipayResponse.getSubMsg().contains("余额不足")) {
|
|
|
+ return GatewayResponse.FAIL.newBuilder().setMsg("转账失败,请联系客服").toResult();
|
|
|
+ }
|
|
|
return GatewayResponse.FAIL.newBuilder().setMsg(alipayResponse.getSubMsg()).toResult();
|
|
|
}
|
|
|
}
|
|
|
@@ -429,6 +432,9 @@ public class TransferFuncServiceImpl implements TransferFuncService {
|
|
|
if (alipayResponse.getSubMsg().contains("冻结")) {
|
|
|
return GatewayResponse.FAIL.newBuilder().setMsg("目前财务清账中,48小时后可提现").toResult();
|
|
|
}
|
|
|
+ if (alipayResponse.getSubMsg().contains("余额不足")) {
|
|
|
+ return GatewayResponse.FAIL.newBuilder().setMsg("转账失败,请联系客服").toResult();
|
|
|
+ }
|
|
|
return GatewayResponse.FAIL.newBuilder().setMsg(alipayResponse.getSubMsg()).toResult();
|
|
|
}
|
|
|
}
|