package com.ots.project.exam.service;
|
import com.github.pagehelper.PageInfo;
|
import com.ots.project.exam.domain.UserEventLog;
|
import com.ots.project.exam.viewmodel.UserEventPageRequestVM;
|
import java.util.List;
|
public interface UserEventLogService extends BaseService<UserEventLog> {
|
List<UserEventLog> getUserEventLogByUserId(Integer id);
|
PageInfo<UserEventLog> page(UserEventPageRequestVM requestVM);
|
List<Integer> selectMothCount();
|
}
|