yujian
2019-01-14 92c681fabac989d1a9f16fa13202d7f5ccac52d9
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserActiveLogService.java
@@ -1,6 +1,7 @@
package com.yeshi.fanli.service.inter.user;
import java.util.List;
import java.util.Map;
import com.yeshi.fanli.entity.bus.user.UserActiveLog;
@@ -31,8 +32,8 @@
    * @param channel
    * @return
    */
   public List<Object> countSameDayByChannel(String channel, Integer type, String years, String startTime, String endTime)
         throws Exception;
   public List<Map<String, Object>> countSameDayByChannel(String channel, Integer type, String years,
         String startTime, String endTime) throws Exception;
   /**
    * 根据渠道   统计当日新增用户有购买行为的数量
    * @param channel
@@ -54,18 +55,8 @@
   public List<Object> getBuyProportion(String channel, Integer type, String years, String startTime, String endTime,Integer orderNum)
         throws Exception;
   /**
    * 根据渠道   统计当日新增用户有购买行为的订单数量大于3
    * @param channel
    * @param type
    * @param years
    * @param startTime
    * @param endTime
    * @param orderNum
    * @return
    * @throws Exception
    */
   public List<Object> countSameDayAndBuyGoodsByChannelAndBuyNum(String channel, Integer type, String years,
         String startTime, String endTime, Integer orderNum) throws Exception;
   public List<Map<String, Object>> countOneWeekUserInfo(String channel, String startTime, String endTime, Integer orderNumber)
         throws Exception;
}