mybatisplus中修改的方法
时间: 2023-09-20 14:11:06 浏览: 230
mybaitisplus修改
MyBatis Plus提供了一些方法来实现数据的修改操作。其中比较常用的方法包括:
1. insert:插入一条记录到数据库表中。
示例:`int insert(T entity)`
2. updateById:根据主键ID更新一条记录。
示例:`int updateById(T entity)`
3. update:根据条件更新记录。
示例:`int update(T entity, Wrapper<T> updateWrapper)`
4. updateBatchById:根据主键ID批量更新记录。
示例:`int updateBatchById(Collection<T> entityList)`
5. updateBatch:根据条件批量更新记录。
示例:`int updateBatch(Collection<T> entityList, int batchSize)`
这些方法可以根据具体的业务需求选择使用。在调用这些方法时,需要传入对应的实体对象(entity)作为修改的参数,以及用于条件筛选的Wrapper对象(updateWrapper)。
阅读全文