whycxzp
2021-07-03 838fbb5e0cf4eec4c51e74024a3b4a48a3adf25d
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();
}