yujian
2020-05-06 eb1adc13eda955e8ef0fc9fe41fb246fa89b722d
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.yeshi.fanli.service.inter.user;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.user.UserInfoRegister;
 
public interface UserInfoRegisterService {
 
    /**
     * 根据多个用户id查询
     * @param list
     * @return
     */
    public List<UserInfoRegister> listByMultipleUids(List<Long> list);
 
    public List<UserInfoRegister> listByMultipleUidAndDay(List<Long> list, String preDay);
 
    
    /**
     * 根据渠道id查询用户
     * @param channel
     * @return
     */
    public List<Long> listUidByChannel(String channel);
    
    /**
     * 根据渠道id查询用户
     * @param channel
     * @return
     */
    public List<Long> listUidByChannelAndDay(String channel, String preDay);
 
    
    public List<UserInfoRegister> listByChannelAndDay(String channel, String preDay);
 
    
    /**
     * 统计渠道每天新增个数
     * @param channel
     * @param preDay
     * @return
     */
    public Long countByChannelAndDay(String channel, String preDay);
 
    /**
     * 添加注册信息
     * @param record
     */
    public void addRegisterInfo(UserInfoRegister record);
 
    public List<UserInfoRegister> listByDay(String preDay);
 
    /**
     * 查询用户注册信息
     * @param uid
     * @return
     */
    public UserInfoRegister selectByPrimaryKey(Long uid);
 
}