jyy
2020-12-02 7efbe93bdb75762f50a1d2d104e05a9e4db49ea2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.matrix.system.hiveErp.dao;
 
 
import com.matrix.system.hiveErp.Vo.StatisticsTimeDaoParam;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
 
 
public interface TjVipSumDao {
 
     Map<String,Integer> countVisitByTime(@Param("list") List<StatisticsTimeDaoParam> daoParams, @Param("shopId") Long shopId);
 
}