cloudroam
3 天以前 3a819e4f668c15e8b77b188b322470da12bb7a43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.mzl.flower.service.wallet;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.mzl.flower.dto.request.wallet.CreateWalletBillRecordDTO;
import com.mzl.flower.dto.request.wallet.QueryWalletBillRecordDTO;
import com.mzl.flower.dto.response.wallet.WalletBillRecordVO;
import com.mzl.flower.dto.request.wallet.QueryWalletBillDTO;
import com.mzl.flower.dto.response.wallet.WalletBillRecordVO;
import com.mzl.flower.dto.response.wallet.WalletReduceVO;
import com.mzl.flower.entity.wallet.WalletBillRecordDO;
import com.baomidou.mybatisplus.extension.service.IService;
 
import javax.servlet.http.HttpServletResponse;
import java.math.BigDecimal;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author @TaoJie
 * @since 2024-10-22
 */
public interface WalletBillRecordService extends IService<WalletBillRecordDO> {
 
    void create(CreateWalletBillRecordDTO dto);
 
    void updateTransferStatus(String transferId);
 
    Page<WalletBillRecordVO> queryPage(QueryWalletBillRecordDTO dto, Page page);
 
 
    void exportSupplierFinanceList(HttpServletResponse response, QueryWalletBillRecordDTO dto);
 
    Page<WalletBillRecordVO> getPage(Page page, QueryWalletBillDTO dto);
 
    Page<WalletBillRecordVO> getPageByDesc(Page page, QueryWalletBillDTO dto);
 
    WalletBillRecordDO getBillRecordByWithdrawRecordId(Long withdrawRecordId);
 
    BigDecimal getHistoryAmount(Long walletId, Long supplierId);
}