|
@@ -67,7 +67,7 @@ public class WxExtractController extends BaseController {
|
|
|
throw new CustomException("提现金额不能超过200元");
|
|
|
}
|
|
|
|
|
|
- if (amount < 30 ){
|
|
|
+ if (amount < 100 ){
|
|
|
throw new CustomException("提现金额不能低于1元");
|
|
|
}
|
|
|
wxOrderService.wxwithdrawal(amount);
|
|
@@ -89,7 +89,7 @@ public class WxExtractController extends BaseController {
|
|
|
}
|
|
|
|
|
|
|
|
|
- if (dto.getAmount() < 1000 ){
|
|
|
+ if (dto.getAmount() < 100000 ){
|
|
|
throw new CustomException("提现金额不能低于1000");
|
|
|
}
|
|
|
|