| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mzl.flower.dto.request.payment.OrderItemSalesQueryDTO; |
| | | import com.mzl.flower.dto.response.payment.OrderItemSalesNewListDTO; |
| | | import com.mzl.flower.dto.response.payment.OrderStatusCountDTO; |
| | | import com.mzl.flower.entity.payment.OrderItemSales; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | |
| | | Integer getSupplierSalesCount(@Param("supplierId") Long supplierId); |
| | | |
| | | Integer getPartnerSalesCount(@Param("partnerId") Long partnerId); |
| | | |
| | | List<OrderStatusCountDTO> getSalesStatusCount(@Param("condition") OrderItemSalesQueryDTO dto); |
| | | } |