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 { List getUserEventLogByUserId(Integer id); PageInfo page(UserEventPageRequestVM requestVM); List selectMothCount(); }