peng
2025-10-27 2a7b0a64b14b22ec45f8a0f6e4764bc3cd16919c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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<Order> {
 
    List<Map<String, Object>> selectOrderCountByDay(Date startTime, Date endTime,String storeId);
 
    List<Map<String, Object>>  selectOrderTimePeriod(Date startTime, Date endTime,String storeId);
 
    List<Map<String,Object>> selectViewDataCount(Date startTime, Date endTime,String storeId, List<String> goodsIds);
 
    List<Map<String,Object>> selectProductRepurchase(Date startTime, Date endTime,Integer currentLimit,String storeId);
 
    List<Map<String,Object>> selectPvUv(Date startTime, Date endTime,String storeId,List<String> goodsIds);
}