From c76d21afb6853938a8f743a9fbaad9b5855d19c6 Mon Sep 17 00:00:00 2001
From: zyy <zyy@email.com>
Date: Wed, 26 Nov 2025 14:57:21 +0800
Subject: [PATCH] 提币手续费
---
trading-order-service/src/main/java/com/yami/trading/service/impl/WithdrawServiceImpl.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/trading-order-service/src/main/java/com/yami/trading/service/impl/WithdrawServiceImpl.java b/trading-order-service/src/main/java/com/yami/trading/service/impl/WithdrawServiceImpl.java
index 74e182c..946d98a 100644
--- a/trading-order-service/src/main/java/com/yami/trading/service/impl/WithdrawServiceImpl.java
+++ b/trading-order-service/src/main/java/com/yami/trading/service/impl/WithdrawServiceImpl.java
@@ -552,7 +552,7 @@
*/
double withdraw_fee = Double.valueOf(sysparaService.find("withdraw_fee").getSvalue());
double fee = 0;
- if ("fixed".equals(withdraw_fee_type)) {
+ /*if ("fixed".equals(withdraw_fee_type)) {
fee = withdraw_fee;
}
if ("rate".equals(withdraw_fee_type)) {
@@ -560,9 +560,9 @@
fee = Arith.mul(withdraw.getVolume().doubleValue(), withdraw_fee);
}
if ("part".equals(withdraw_fee_type)) {
- /**
+ *//**
* 提现手续费part分段的值
- */
+ *//*
String withdraw_fee_part = sysparaService.find("withdraw_fee_part").getSvalue();
String[] withdraw_fee_parts = withdraw_fee_part.split(",");
for (int i = 0; i < withdraw_fee_parts.length; i++) {
@@ -574,7 +574,7 @@
}
i++;
}
- }
+ }*/
/**
* 当日提现次数是否超过
*/
--
Gitblit v1.9.3