|
@@ -215,6 +215,10 @@ public class WithdrawService extends SuperService {
|
|
|
PaymentType paymentType = param.getPaymentType();
|
|
PaymentType paymentType = param.getPaymentType();
|
|
|
BigDecimal amount = param.getAmount();
|
|
BigDecimal amount = param.getAmount();
|
|
|
|
|
|
|
|
|
|
+ if(amount.compareTo(new BigDecimal(0)) == 0) {
|
|
|
|
|
+ return com.github.microservice.net.ResultContent.buildFail("提现金额不能为0");
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
if (StringUtils.isBlank(projectOid)) {
|
|
if (StringUtils.isBlank(projectOid)) {
|
|
|
projectOid = getCurrentProjectOid();
|
|
projectOid = getCurrentProjectOid();
|
|
|
}
|
|
}
|