liufan9527
2024-11-27 5ab5c03df7b21f5b8b2af1b8e382139274e6f9a1
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.se.system.mapper;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
@SuppressWarnings("ALL")
public interface IndexMapper
{
    public int newUserCount(@Param("createTime") String createTime);
}