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);
|
}
|