|
@@ -85,6 +85,9 @@ public class UserOrderController {
|
|
|
if (Objects.isNull(tenantStaff)) {
|
|
|
throw BizException.from("用户信息不存在");
|
|
|
}
|
|
|
+ if (orderReq.getPaymentCashAmount().compareTo(new BigDecimal(10000000))>0) {
|
|
|
+ throw new com.yonge.toolset.base.exception.BizException("支付失败,下单金额超过最高上限");
|
|
|
+ }
|
|
|
|
|
|
|
|
|
if (orderReq.getPaymentCashAmount().compareTo(new BigDecimal(10000000))>0) {
|