package com.sqx.modules.orders.service; import com.baomidou.mybatisplus.extension.service.IService; import com.sqx.modules.orders.entity.Orders; import com.sqx.modules.orders.vo.OrderStatisticsVo; import org.apache.ibatis.annotations.Param; import java.util.List; public interface OrderStatisticsService extends IService { OrderStatisticsVo getStatistics(Long driverUserId, String startTime, String endTime); List getTrend(Long driverUserId,String choose); List getYoYandQoQ(Long driverUserId,String choose); }