1
13693261870
2024-11-27 556de16f65ae7b776fbf77e48bfcfa8523c1aff3
se-modules/se-system/src/main/java/com/se/system/mapper/IndexMapper.java
@@ -1,13 +1,25 @@
package com.se.system.mapper;
import org.apache.ibatis.annotations.MapKey;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Map;
@Mapper
@Repository
@SuppressWarnings("ALL")
public interface IndexMapper
{
    public int newUserCount(@Param("createTime") String createTime);
public interface IndexMapper {
    int newUserCount(@Param("createTime") String createTime);
    //@MapKey("username")
    List<Map<String, Object>> userCountList(@Param("createTime") String createTime, @Param("amount") Integer amount);
    int uvCount(@Param("createTime") String createTime);
    int pvCount(@Param("createTime") String createTime);
    List<Map<String, Object>> sysVisitList(@Param("createTime") String createTime, @Param("amount") Integer amount);
}