wujiefeng 1 سال پیش
والد
کامیت
2af1ab7883
1فایلهای تغییر یافته به همراه1 افزوده شده و 4 حذف شده
  1. 1 4
      PaymentClient/src/main/java/com/zhongshu/payment/client/service/WalletFeignService.java

+ 1 - 4
PaymentClient/src/main/java/com/zhongshu/payment/client/service/WalletFeignService.java

@@ -1,6 +1,5 @@
 package com.zhongshu.payment.client.service;
 
-import com.zhongshu.payment.client.model.WalletFlowModel;
 import com.zhongshu.payment.client.model.WalletModel;
 import com.zhongshu.payment.client.model.param.AmountUpdateParam;
 import com.zhongshu.payment.client.ret.ResultContent;
@@ -12,8 +11,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.bind.annotation.RequestParam;
 
-import java.util.List;
-
 /**
  * @author wjf
  * @date 2024/7/26
@@ -67,5 +64,5 @@ public interface WalletFeignService {
 //    ResultContent subtractTotalAmount(@RequestParam("walletId")String walletId, @RequestParam("total") BigDecimal total, @RequestParam("outTradeNo") String outTradeNo, @RequestParam("type") TradeType type, @RequestParam("attach")String attach);
 
     /** 查询钱包流水 */
-    List<WalletFlowModel> queryWalletFlow(String walletId);
+//    List<WalletFlowModel> queryWalletFlow(String walletId);
 }