1
13693261870
2024-11-27 3c79d1b62d794cda8b9976610956057f212a4706
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
 
    //@MapKey("username")
    public List<Map<String, Object>> userCountList(@Param("createTime") String createTime, @Param("amount") Integer amount);
 
    public int uvCount(@Param("createTime") String createTime);
 
    public int pvCount(String createTime);
}