1
13693261870
2024-11-27 cc078297fdaaa9819ad4f1a0d82fc5264f56d04a
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);
}