package cn.lili.modules.lmk.mapper; import cn.lili.modules.order.order.entity.dos.Order; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.util.Date; import java.util.List; import java.util.Map; @Mapper public interface LmkOrderSelectMapper extends BaseMapper { List> selectOrderCountByDay(Date startTime, Date endTime,String storeId); List> selectOrderTimePeriod(Date startTime, Date endTime,String storeId); List> selectViewDataCount(Date startTime, Date endTime,String storeId, List goodsIds); List> selectProductRepurchase(Date startTime, Date endTime,Integer currentLimit,String storeId); List> selectPvUv(Date startTime, Date endTime,String storeId,List goodsIds); }