陶杰
2024-10-28 66f57ebef36c03353609ad3b2b6623396b5061a4
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
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.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;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author @TaoJie
 * @since 2024-10-22
 */
public interface WalletBillRecordService extends IService<WalletBillRecordDO> {
 
    void create(CreateWalletBillRecordDTO dto);
 
    void updateTransferStatus(String transferId);
 
    Page<WalletBillRecordVO> getPage(Page page, QueryWalletBillDTO dto);
}