From efac52b9a866cfb039644eef638c331fc6efdfef Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Tue, 19 Sep 2023 17:06:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E8=BF=90=E8=90=A5=E5=95=86?= =?UTF-8?q?=E6=8F=90=E7=8E=B0=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/jsowell/pile/service/ClearingWithdrawInfoService.java | 4 ++++ .../pile/service/impl/ClearingWithdrawInfoServiceImpl.java | 1 + 2 files changed, 5 insertions(+) diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/ClearingWithdrawInfoService.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/ClearingWithdrawInfoService.java index 34d2723f3..3351cf599 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/ClearingWithdrawInfoService.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/ClearingWithdrawInfoService.java @@ -1,7 +1,9 @@ package com.jsowell.pile.service; +import com.huifu.adapay.core.exception.BaseAdaPayException; import com.jsowell.pile.domain.ClearingWithdrawInfo; import com.jsowell.pile.vo.web.ClearingBillVO; +import com.jsowell.pile.vo.web.WithdrawInfoVO; import java.util.List; public interface ClearingWithdrawInfoService{ @@ -32,4 +34,6 @@ public interface ClearingWithdrawInfoService{ ClearingBillVO selectWithdrawInfoByOrderCode(String orderCode); List selectWithdrawInfoByOrderCodeList(List orderCodeList); + + List selectByMerchantId(String merchantId) throws BaseAdaPayException; } diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java index 5cc3ec1a8..c7997d973 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java @@ -101,6 +101,7 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ /** * 查询运营商提现记录 */ + @Override public List selectByMerchantId(String merchantId) throws BaseAdaPayException { List resultList = Lists.newArrayList(); List infoList = clearingWithdrawInfoMapper.selectByMerchantId(merchantId);