yujian
2020-03-24 fd1dce3121a7773419263c495f92e160cc1e7124
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
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);
 
}