2023-07-21 16:30:31 +08:00
|
|
|
package com.jsowell.pile.service;
|
|
|
|
|
|
2023-09-19 17:06:29 +08:00
|
|
|
import com.huifu.adapay.core.exception.BaseAdaPayException;
|
2024-01-05 15:26:22 +08:00
|
|
|
import com.jsowell.adapay.dto.QueryWithdrawListDTO;
|
|
|
|
|
import com.jsowell.common.core.page.PageResponse;
|
2023-07-21 16:30:31 +08:00
|
|
|
import com.jsowell.pile.domain.ClearingWithdrawInfo;
|
2023-08-22 09:42:30 +08:00
|
|
|
import com.jsowell.pile.vo.web.ClearingBillVO;
|
2023-09-19 17:06:29 +08:00
|
|
|
import com.jsowell.pile.vo.web.WithdrawInfoVO;
|
2023-08-08 14:16:05 +08:00
|
|
|
|
2024-01-05 15:26:22 +08:00
|
|
|
import java.math.BigDecimal;
|
2023-08-08 14:16:05 +08:00
|
|
|
import java.util.List;
|
2024-01-05 15:26:22 +08:00
|
|
|
|
2023-07-21 16:30:31 +08:00
|
|
|
public interface ClearingWithdrawInfoService{
|
|
|
|
|
|
|
|
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
|
|
|
|
|
|
int insert(ClearingWithdrawInfo record);
|
|
|
|
|
|
|
|
|
|
int insertOrUpdate(ClearingWithdrawInfo record);
|
|
|
|
|
|
|
|
|
|
int insertOrUpdateSelective(ClearingWithdrawInfo record);
|
|
|
|
|
|
|
|
|
|
int insertSelective(ClearingWithdrawInfo record);
|
|
|
|
|
|
|
|
|
|
ClearingWithdrawInfo selectByPrimaryKey(Integer id);
|
|
|
|
|
|
|
|
|
|
int updateByPrimaryKeySelective(ClearingWithdrawInfo record);
|
|
|
|
|
|
|
|
|
|
int updateByPrimaryKey(ClearingWithdrawInfo record);
|
|
|
|
|
|
|
|
|
|
int updateBatch(List<ClearingWithdrawInfo> list);
|
|
|
|
|
|
|
|
|
|
int batchInsert(List<ClearingWithdrawInfo> list);
|
|
|
|
|
|
2023-08-08 14:16:05 +08:00
|
|
|
ClearingWithdrawInfo selectByWithdrawCode(String withdrawCode);
|
2023-08-22 09:42:30 +08:00
|
|
|
|
|
|
|
|
ClearingBillVO selectWithdrawInfoByOrderCode(String orderCode);
|
2023-08-22 13:44:10 +08:00
|
|
|
|
|
|
|
|
List<ClearingBillVO> selectWithdrawInfoByOrderCodeList(List<String> orderCodeList);
|
2023-09-19 17:06:29 +08:00
|
|
|
|
|
|
|
|
List<WithdrawInfoVO> selectByMerchantId(String merchantId) throws BaseAdaPayException;
|
2024-01-05 15:26:22 +08:00
|
|
|
|
|
|
|
|
PageResponse queryWithdrawList(QueryWithdrawListDTO dto) throws BaseAdaPayException;
|
|
|
|
|
|
|
|
|
|
BigDecimal queryTotalWithdraw(String merchantId);
|
2025-11-18 13:33:26 +08:00
|
|
|
|
2023-07-21 16:30:31 +08:00
|
|
|
}
|