mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
查询运营商提现记录
This commit is contained in:
@@ -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<ClearingBillVO> selectWithdrawInfoByOrderCodeList(List<String> orderCodeList);
|
||||
|
||||
List<WithdrawInfoVO> selectByMerchantId(String merchantId) throws BaseAdaPayException;
|
||||
}
|
||||
|
||||
@@ -101,6 +101,7 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ
|
||||
/**
|
||||
* 查询运营商提现记录
|
||||
*/
|
||||
@Override
|
||||
public List<WithdrawInfoVO> selectByMerchantId(String merchantId) throws BaseAdaPayException {
|
||||
List<WithdrawInfoVO> resultList = Lists.newArrayList();
|
||||
List<ClearingWithdrawInfo> infoList = clearingWithdrawInfoMapper.selectByMerchantId(merchantId);
|
||||
|
||||
Reference in New Issue
Block a user