| | |
| | | package com.mzl.flower.mapper.wallet; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mzl.flower.dto.request.wallet.QueryWalletDTO; |
| | | import com.mzl.flower.dto.response.member.MemberVO; |
| | | 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; |
| | | |
| | |
| | | */ |
| | | public interface WalletWithdrawRecordMapper extends BaseMapper<WalletWithdrawRecordDO> { |
| | | |
| | | List<WalletWithdrawRecordVO> queryPage(QueryWalletDTO queryWalletDTO, Page page); |
| | | List<WalletWithdrawRecordVO> queryPage(@Param("dto")QueryWalletWithdrawDTO queryWalletDTO, Page page); |
| | | } |