1
13693261870
2024-11-27 63f04d92a2376a6272d0ad61358475d527f26a2d
se-modules/se-system/src/main/java/com/se/system/mapper/IndexMapper.java
@@ -1,13 +1,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 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);
}