| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ruoyi.system.domain.AccountDetail; |
| | | import com.ruoyi.system.domain.Withdrawal; |
| | | import com.ruoyi.system.pojo.dto.WithdrawPageDTO; |
| | | import com.ruoyi.system.pojo.vo.WithdrawPageVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | @Mapper |
| | | public interface WithdrawMapper extends BaseMapper<Withdrawal> { |
| | | IPage<WithdrawPageVO> withdrawPage(@Param("page") IPage<WithdrawPageVO> page,@Param("dto") WithdrawPageDTO dto); |
| | | } |