File was renamed from src/main/java/com/ycl/jxkg/repository/UserEventLogMapper.java |
| | |
| | | package com.ycl.jxkg.repository; |
| | | package com.ycl.jxkg.mapper; |
| | | |
| | | import com.ycl.jxkg.domain.UserEventLog; |
| | | import com.ycl.jxkg.domain.other.KeyValue; |
| | | import com.ycl.jxkg.viewmodel.admin.user.UserEventPageRequestVM; |
| | | import com.ycl.jxkg.vo.admin.user.UserEventPageRequestVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | |
| | | List<UserEventLog> getUserEventLogByUserId(Integer id); |
| | | |
| | | List<UserEventLog> page(UserEventPageRequestVM requestVM); |
| | | List<UserEventLog> page(UserEventPageRequestVO requestVM); |
| | | |
| | | List<KeyValue> selectCountByDate(@Param("startTime") Date startTime, @Param("endTime") Date endTime); |
| | | } |