package com.mzl.flower.mapper.wallet;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.mzl.flower.dto.request.wallet.QueryWalletWithdrawDTO;
|
import com.mzl.flower.dto.response.wallet.WalletWithdrawRecordVO;
|
import com.mzl.flower.entity.wallet.WalletWithdrawRecordDO;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author @TaoJie
|
* @since 2024-10-22
|
*/
|
public interface WalletWithdrawRecordMapper extends BaseMapper<WalletWithdrawRecordDO> {
|
|
List<WalletWithdrawRecordVO> queryPage(@Param("dto")QueryWalletWithdrawDTO queryWalletDTO, Page page);
|
}
|