cloudroam
2024-09-09 9f345310a755f35dcd06424b3923b119686365af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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.OrderSalesQueryDTO;
import com.mzl.flower.dto.response.payment.OrderSalesListDTO;
import com.mzl.flower.entity.payment.OrderSales;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Repository
public interface OrderSalesMapper extends BaseMapper<OrderSales> {
    List<OrderSalesListDTO> selectSalesList(Page page, @Param("condition") OrderSalesQueryDTO dto);
 
    Integer getPartnerSalesCount(@Param("partnerId") Long partnerId);
}