|
@@ -89,8 +89,8 @@ public class WxExtractController extends BaseController {
|
|
|
}
|
|
|
|
|
|
|
|
|
- if (dto.getAmount() <= 0 ){
|
|
|
- throw new CustomException("提现金额必须大于0");
|
|
|
+ if (dto.getAmount() < 1000 ){
|
|
|
+ throw new CustomException("提现金额不能低于1000");
|
|
|
}
|
|
|
|
|
|
return Response.success(wxOrderService.wxwithbankdrawal(dto));
|