admin
2019-01-03 f8545df1b8de09c4e0d663bf678a299d83d3077a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.yeshi.fanli.service.inter.user;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.user.UserActiveLog;
 
/**
 * 用户活跃日志服务
 * 
 * @author Administrator
 *
 */
public interface UserActiveLogService {
    /**
     * 用户活跃日志
     * 
     * @param userActiveLog
     */
    public void addUserActiveLog(UserActiveLog userActiveLog);
 
    /**
     * 获取某个用户的最近一次的活跃信息
     * 
     * @param uid
     * @return
     */
    public UserActiveLog getUserLatestActiveInfo(Long uid);
 
 
    public List<Object> countSameDayByChannel(String channel, Integer type, String years, String startTime, String endTime)
            throws Exception;
 
}