1
13693261870
2024-11-27 63f04d92a2376a6272d0ad61358475d527f26a2d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
}