update 查询提现记录

This commit is contained in:
2024-01-05 15:26:22 +08:00
parent 65332f1ed4
commit 29adce0d00
8 changed files with 376 additions and 120 deletions

View File

@@ -1,11 +1,15 @@
package com.jsowell.pile.service;
import com.huifu.adapay.core.exception.BaseAdaPayException;
import com.jsowell.adapay.dto.QueryWithdrawListDTO;
import com.jsowell.common.core.page.PageResponse;
import com.jsowell.pile.domain.ClearingWithdrawInfo;
import com.jsowell.pile.vo.web.ClearingBillVO;
import com.jsowell.pile.vo.web.WithdrawInfoVO;
import java.math.BigDecimal;
import java.util.List;
public interface ClearingWithdrawInfoService{
int deleteByPrimaryKey(Integer id);
@@ -35,4 +39,8 @@ public interface ClearingWithdrawInfoService{
List<ClearingBillVO> selectWithdrawInfoByOrderCodeList(List<String> orderCodeList);
List<WithdrawInfoVO> selectByMerchantId(String merchantId) throws BaseAdaPayException;
PageResponse queryWithdrawList(QueryWithdrawListDTO dto) throws BaseAdaPayException;
BigDecimal queryTotalWithdraw(String merchantId);
}