whyclxw
2021-04-15 b40ac12d6231f261581fb4281c905819530e934d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
}