接口 ChainUpdate<T>
-
- 所有超级接口:
ChainWrapper<T>
- 所有已知实现类:
LambdaUpdateChainWrapper,UpdateChainWrapper
public interface ChainUpdate<T> extends ChainWrapper<T>
具有更新方法的定义- 从以下版本开始:
- 2018-12-19
- 作者:
- miemie
-
-
方法概要
所有方法 实例方法 默认方法 修饰符和类型 方法 说明 default booleanremove()删除数据default booleanupdate()更新数据default booleanupdate(T entity)更新数据-
从接口继承的方法 com.baomidou.mybatisplus.extension.conditions.ChainWrapper
getBaseMapper, getWrapper
-
-
-
-
方法详细资料
-
update
default boolean update()
更新数据- 返回:
- 是否成功
-
update
default boolean update(T entity)
更新数据- 参数:
entity- 实体类- 返回:
- 是否成功
-
remove
default boolean remove()
删除数据- 返回:
- 是否成功
-
-