cloudroam
2024-09-09 9f345310a755f35dcd06424b3923b119686365af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
}