basemapper常用方法
时间: 2023-10-04 11:10:15 浏览: 65
Mapper基础教程
BaseMapper是Mybatis框架中的一个接口,定义了一些基本的数据库操作方法。常用的方法包括:
1. selectByPrimaryKey:根据主键查询单条记录。
2. selectOne:根据条件查询单条记录。
3. select:根据条件查询多条记录。
4. insert:插入单条记录。
5. insertSelective:插入单条记录,只插入非空字段。
6. updateByPrimaryKey:根据主键更新单条记录。
7. updateByPrimaryKeySelective:根据主键更新单条记录,只更新非空字段。
8. deleteByPrimaryKey:根据主键删除单条记录。
除了以上常用方法,BaseMapper还提供了一些分页查询和批量操作的方法,如selectPage、insertList、updateList等。这些方法可以根据具体的业务需求来选择使用。
阅读全文