package cc.mrbird.febs.mall.mapper; import cc.mrbird.febs.mall.dto.ApiChargeListDto; import cc.mrbird.febs.mall.entity.MallCharge; import cc.mrbird.febs.mall.entity.MallMemberWithdraw; import cc.mrbird.febs.mall.vo.ApiChargeVo; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import org.apache.ibatis.annotations.Param; import java.util.List; public interface MallChargeMapper extends BaseMapper { List selectChargeListInPage(@Param("record")ApiChargeListDto apiChargeListDto, Page page); IPage selectAdminChargeListInPage(Page page, @Param("record")MallCharge mallCharge); IPage selectAdminWithdrawListInPage(Page page, @Param("record")MallMemberWithdraw mallMemberWithdraw); }