查询运营商提现记录

This commit is contained in:
2023-09-19 17:06:29 +08:00
parent 09e83e8b24
commit efac52b9a8
2 changed files with 5 additions and 0 deletions

View File

@@ -1,7 +1,9 @@
package com.jsowell.pile.service; package com.jsowell.pile.service;
import com.huifu.adapay.core.exception.BaseAdaPayException;
import com.jsowell.pile.domain.ClearingWithdrawInfo; import com.jsowell.pile.domain.ClearingWithdrawInfo;
import com.jsowell.pile.vo.web.ClearingBillVO; import com.jsowell.pile.vo.web.ClearingBillVO;
import com.jsowell.pile.vo.web.WithdrawInfoVO;
import java.util.List; import java.util.List;
public interface ClearingWithdrawInfoService{ public interface ClearingWithdrawInfoService{
@@ -32,4 +34,6 @@ public interface ClearingWithdrawInfoService{
ClearingBillVO selectWithdrawInfoByOrderCode(String orderCode); ClearingBillVO selectWithdrawInfoByOrderCode(String orderCode);
List<ClearingBillVO> selectWithdrawInfoByOrderCodeList(List<String> orderCodeList); List<ClearingBillVO> selectWithdrawInfoByOrderCodeList(List<String> orderCodeList);
List<WithdrawInfoVO> selectByMerchantId(String merchantId) throws BaseAdaPayException;
} }

View File

@@ -101,6 +101,7 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ
/** /**
* 查询运营商提现记录 * 查询运营商提现记录
*/ */
@Override
public List<WithdrawInfoVO> selectByMerchantId(String merchantId) throws BaseAdaPayException { public List<WithdrawInfoVO> selectByMerchantId(String merchantId) throws BaseAdaPayException {
List<WithdrawInfoVO> resultList = Lists.newArrayList(); List<WithdrawInfoVO> resultList = Lists.newArrayList();
List<ClearingWithdrawInfo> infoList = clearingWithdrawInfoMapper.selectByMerchantId(merchantId); List<ClearingWithdrawInfo> infoList = clearingWithdrawInfoMapper.selectByMerchantId(merchantId);