1
2
3
4
5
6
7
8
9
10
11
12
| package com.whyc.mapper;
|
| import com.whyc.pojo.User_inf;
| import org.apache.ibatis.annotations.Select;
|
| import java.util.List;
|
| public interface ClearTableMapper{
|
| @Select("select * from db_user.tb_user_inf limit 1")
| List<User_inf> clearTable();
| }
|
|