Cui Zhi Feng
2024-08-28 c9f7d07e0ae084c85a427ef17ac958dad059eef9
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);
}