|  |  |  | 
|---|
|  |  |  | package com.mzl.flower.mapper.wallet; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
|---|
|  |  |  | import com.mzl.flower.dto.request.wallet.QueryWalletBillDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.response.wallet.WalletBillRecordVO; | 
|---|
|  |  |  | import com.mzl.flower.dto.response.wallet.WalletWithdrawRecordVO; | 
|---|
|  |  |  | import com.mzl.flower.entity.wallet.WalletBillRecordDO; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Param; | 
|---|
|  |  |  | import org.springframework.stereotype.Repository; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * <p> | 
|---|
|  |  |  | 
|---|
|  |  |  | @Repository | 
|---|
|  |  |  | public interface WalletBillRecordMapper extends BaseMapper<WalletBillRecordDO> { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<WalletBillRecordVO> getPage(Page page, @Param("dto") QueryWalletBillDTO dto); | 
|---|
|  |  |  | } | 
|---|