july 4 лет назад
Родитель
Сommit
4e7c67dca8

+ 1 - 0
ldt-core/src/main/java/org/springblade/payment/callback/trade/UserPointTransferWithdrawCallback.java

@@ -68,6 +68,7 @@ public class UserPointTransferWithdrawCallback {
 		withdrawRec.setRequestNo(requestNo);
 		withdrawRecService.saveOrUpdate(withdrawRec);
 
+		bladeLogger.info("用户积分余额提现--提现请求参数", withdrawOrderDto.toString());
 		YopResponse yopResponse = yeepaySaasService.withdrawOrder(withdrawOrderDto);
 		JSONObject res = JSON.parseObject(yopResponse.getStringResult());
 		if (!Objects.equals(res.getString("returnCode"), "UA00000")) {

+ 4 - 1
ldt-core/src/main/java/org/springblade/payment/plugin/WithdrawPlugin.java

@@ -15,7 +15,6 @@ import org.springblade.common.enums.OrderType;
 import org.springblade.common.enums.PaymentType;
 import org.springblade.common.enums.TransferStatus;
 import org.springblade.common.enums.WithdrawStatus;
-import org.springblade.core.log.annotation.ApiLog;
 import org.springblade.core.log.exception.ServiceException;
 import org.springblade.core.log.logger.BladeLogger;
 import org.springblade.core.tool.api.R;
@@ -123,6 +122,8 @@ public class WithdrawPlugin implements Withdraw {
 			.notifyUrl(csUrl(PaymentType.YEE_PAY_WITHDRAW.name()))
 			.operatePeriod(YeepayApiConstant.operatePeriod.ALL)
 			.build();
+
+		bladeLogger.info("用户余额提现请求参数", settleSelfSettleApplyDto.toString());
 		YopResponse yopResponse = yeepaySaasService.settleSelfSettleApply(settleSelfSettleApplyDto);
 		JSONObject res = JSON.parseObject(yopResponse.getStringResult());
 
@@ -180,6 +181,8 @@ public class WithdrawPlugin implements Withdraw {
 			.notifyUrl(callbackUrl(PaymentType.YEE_PAY_WITHDRAW.name()))
 			.build();
 		transferOrderDto.setParentMerchantNo(yeePayConst.getPlatformServiceNo());
+
+		bladeLogger.info("用户积分余额提现--转账请求参数", transferOrderDto.toString());
 		YopResponse yopResponse = yeepaySaasService.transferOrder(transferOrderDto);
 		JSONObject res = JSON.parseObject(yopResponse.getStringResult());
 		if (!Objects.equals(res.getString("returnCode"), "UA00000")) {

+ 0 - 32
ldt-risk/dependency-reduced-pom.xml

@@ -131,38 +131,6 @@
     </repository>
   </repositories>
   <dependencies>
-    <dependency>
-      <groupId>org.apache.flink</groupId>
-      <artifactId>flink-java</artifactId>
-      <version>1.14.0</version>
-      <scope>provided</scope>
-      <exclusions>
-        <exclusion>
-          <artifactId>commons-math3</artifactId>
-          <groupId>org.apache.commons</groupId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.flink</groupId>
-      <artifactId>flink-streaming-java_2.11</artifactId>
-      <version>1.14.0</version>
-      <scope>provided</scope>
-      <exclusions>
-        <exclusion>
-          <artifactId>flink-file-sink-common</artifactId>
-          <groupId>org.apache.flink</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>flink-scala_2.11</artifactId>
-          <groupId>org.apache.flink</groupId>
-        </exclusion>
-        <exclusion>
-          <artifactId>commons-math3</artifactId>
-          <groupId>org.apache.commons</groupId>
-        </exclusion>
-      </exclusions>
-    </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>