| | |
| | | package com.stylefeng.guns.modular.system.dao; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.stylefeng.guns.modular.system.model.Car; |
| | | import com.stylefeng.guns.modular.system.model.TWithdrawal; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | |
| | | public interface TWithdrawalMapper extends BaseMapper<TWithdrawal> { |
| | | |
| | | /** |
| | | * 提现记录 |
| | | * @param page |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | List<TWithdrawal> queryList(@Param("page") Page<TWithdrawal> page, @Param("uid")Integer uid); |
| | | } |