admin
2022-01-28 cd7767932dddeaf6d9c73a83d4a9b38f0341b77f
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
package com.yeshi.buwan.service.inter.user;
 
import com.yeshi.buwan.vo.AcceptData;
 
/**
 * @author hxh
 * @title: UserDPContentWatchStatisticService
 * @description: TODO
 * @date 2021/12/29 18:03
 */
public interface UserDPContentWatchStatisticService {
 
    /**
     * @return void
     * @author hxh
     * @description 阅读小说
     * @date 18:06 2021/12/29
     * @param: acceptData
     * @param: duration
     **/
    public void readNovel(AcceptData acceptData, long duration, String loginUid);
 
    /**
     * @return void
     * @author hxh
     * @description 观看视频
     * @date 18:07 2021/12/29
     * @param: acceptData
     **/
    public void playDrawVideo(AcceptData acceptData, String loginUid);
 
 
    /**
     * @return void
     * @author hxh
     * @description 阅读新闻
     * @date 18:08 2021/12/29
     * @param: acceptData
     **/
    public void readNews(AcceptData acceptData, String loginUid);
 
 
    public String getIdentityId(AcceptData acceptData);
 
 
    /**
     * @author hxh
     * @description 是否为看内容的用户
     * @date 18:40 2021/12/29
     * @param: acceptData
     * @return boolean
     **/
    public boolean isDPUser(AcceptData acceptData);
}