package com.mindskip.xzs.service;
|
|
import com.mindskip.xzs.domain.UserEventLog;
|
import com.mindskip.xzs.viewmodel.admin.user.UserEventPageRequestVM;
|
import com.github.pagehelper.PageInfo;
|
|
import java.util.List;
|
|
/**
|
* @version 2.2.0
|
* @description: 用户动态
|
* Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司
|
* @date 2021 /9/7 9:45
|
*/
|
public interface UserEventLogService extends BaseService<UserEventLog> {
|
|
/**
|
* 根据id获取用户
|
*
|
* @param id the id
|
* @return the user event log by user id
|
*/
|
List<UserEventLog> getUserEventLogByUserId(Integer id);
|
|
/**
|
* 用户动态分页
|
*
|
* @param requestVM the request vm
|
* @return the page info
|
*/
|
PageInfo<UserEventLog> page(UserEventPageRequestVM requestVM);
|
|
/**
|
* 获取月动态数量
|
*
|
* @return the list
|
*/
|
List<Integer> selectMothCount();
|
}
|