|
|
@@ -309,7 +309,7 @@ public class PayEaseService {
|
|
|
builder.setPayee(payee);
|
|
|
JSONObject response = request(ConfigurationUtils.getTransferDomesticSingleOrderUrl(), builder.bothEncryptBuild());
|
|
|
|
|
|
- if ("SUCCESS".equals(response.getString("status"))) {
|
|
|
+ if (!"SUCCESS".equals(response.getString("status"))) {
|
|
|
throw new BusinessException(response.getString("error"));
|
|
|
}
|
|
|
|