| | |
| | | @Repository |
| | | @SuppressWarnings("ALL") |
| | | public interface IndexMapper { |
| | | public int newUserCount(@Param("createTime") String createTime); |
| | | int newUserCount(@Param("createTime") String createTime); |
| | | |
| | | //@MapKey("username") |
| | | public List<Map<String, Object>> userCountList(@Param("createTime") String createTime, @Param("amount") Integer amount); |
| | | List<Map<String, Object>> userCountList(@Param("createTime") String createTime, @Param("amount") Integer amount); |
| | | |
| | | public int uvCount(@Param("createTime") String createTime); |
| | | int uvCount(@Param("createTime") String createTime); |
| | | |
| | | public int pvCount(String createTime); |
| | | int pvCount(@Param("createTime") String createTime); |
| | | |
| | | List<Map<String, Object>> sysVisitList(@Param("createTime") String createTime, @Param("amount") Integer amount); |
| | | } |