|
@@ -386,7 +386,7 @@ public class SimpleCORSFilter implements Filter {
|
|
|
if(null != customer1 && ! appSecret.equals(customer1.getAppSecret())){
|
|
|
return ResponseCode.SIGN_ERROR;
|
|
|
}
|
|
|
- if (0 == new BigDecimal(customer1.getAccountBalance()).compareTo(new BigDecimal(0.0))) {
|
|
|
+ if (0 >= new BigDecimal(customer1.getAccountBalance()).compareTo(new BigDecimal(0.0))) {
|
|
|
return ResponseCode.BALANCE_QUERY_ERROR;
|
|
|
}
|
|
|
if(!apiMaps.containsKey(api)){
|