Interface UpdateChain<T>
- All Superinterfaces:
MPJBaseJoin<T>
- All Known Implementing Classes:
KtUpdateJoinWrapper,UpdateJoinWrapper
链式调用
构造方法必须传 class 或 entity 否则会报错
new UpdateJoinWrapper(User.class)
JoinWrappers.update(User.class)
- Since:
- 1.4.10
- Author:
- yulichang
-
Method Summary
Modifier and TypeMethodDescriptiondefault intupdate()链式调用default int链式调用default int链式调用default intupdateAndNull(T entity) 链式调用Methods inherited from interface com.github.yulichang.interfaces.MPJBaseJoin
getDeleteLogicSql, getDeleteSql, getUnionSql
-
Method Details
-
getEntityClass
-
update
default int update()链式调用构造方法必须传 class 或 entity 否则会报错
new UpdateJoinWrapper(User.class)
JoinWrappers.update(User.class) -
update
链式调用构造方法必须传 class 或 entity 否则会报错
new UpdateJoinWrapper(User.class)
JoinWrappers.update(User.class) -
updateAndNull
default int updateAndNull()链式调用构造方法必须传 class 或 entity 否则会报错
new UpdateJoinWrapper(User.class)
JoinWrappers.update(User.class) -
updateAndNull
链式调用构造方法必须传 class 或 entity 否则会报错
new UpdateJoinWrapper(User.class)
JoinWrappers.update(User.class)
-