|  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
|---|
|  |  |  | import com.mzl.flower.dto.request.payment.OrderQueryDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.response.payment.OrderCheckListDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.response.payment.OrderListDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.response.payment.OrderStatusCountDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.response.payment.SupplierNumDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.response.payment.*; | 
|---|
|  |  |  | import com.mzl.flower.entity.payment.Order; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Param; | 
|---|
|  |  |  | import org.springframework.stereotype.Repository; | 
|---|
|  |  |  | 
|---|
|  |  |  | List<Order> getOrderForBill(@Param("startTime")LocalDateTime startTime | 
|---|
|  |  |  | , @Param("endTime")LocalDateTime endTime); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Order getUserLastOrder(@Param("userId") String userId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<OrderPointGoodsListDTO> getPointGoodsList(@Param("orderId") String orderId); | 
|---|
|  |  |  | } | 
|---|