package com.mzl.flower.service.wallet;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.mzl.flower.dto.request.wallet.QueryWalletWithdrawDTO;
|
import com.mzl.flower.dto.request.wallet.WalletWithdrawRecordDTO;
|
import com.mzl.flower.dto.response.wallet.WalletWithdrawRecordVO;
|
import com.mzl.flower.dto.request.wallet.CreateWalletWithdrawRecordDTO;
|
import com.mzl.flower.entity.wallet.WalletWithdrawRecordDO;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author @TaoJie
|
* @since 2024-10-22
|
*/
|
public interface WalletWithdrawRecordService extends IService<WalletWithdrawRecordDO> {
|
Page<WalletWithdrawRecordVO> queryPage(QueryWalletWithdrawDTO dto, Page page);
|
|
void updateWallet(WalletWithdrawRecordDTO walletWithdrawRecordDTO);
|
|
boolean create(CreateWalletWithdrawRecordDTO walletWithdrawRecordDTO);
|
}
|