package com.example.lxw.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.example.lxw.pojo.User_inf;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
/**
|
* @author lxw
|
* @create 2021-04-13 16:32
|
*/
|
@Mapper
|
public interface User_InfMapper extends BaseMapper<User_inf> {
|
/**
|
* 返回所有的用户
|
* @return
|
*/
|
public List<User_inf> searchByBaojiUsr();
|
}
|