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);
| }
|
|