| package com.mzl.flower.mapper.payment; | 
|   | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
| import com.mzl.flower.dto.request.payment.BillQueryDTO; | 
| import com.mzl.flower.dto.response.payment.BillListDTO; | 
| import com.mzl.flower.entity.payment.Bill; | 
| import org.apache.ibatis.annotations.Param; | 
| import org.springframework.stereotype.Repository; | 
|   | 
| import java.util.List; | 
|   | 
| @Repository | 
| public interface BillMapper extends BaseMapper<Bill> { | 
|     List<BillListDTO> selectBillList(Page page, @Param("condition") BillQueryDTO dto); | 
| } |