接口 GenericUpdateDao<T>
-
- 所有已知实现类:
GenericUpdateDAOImpl
public interface GenericUpdateDao<T>更新接口- 版本:
- 2021年10月19日
- 作者:
- 王鸿雁
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 intcreateEntity(Object entity)intcreateEntityList(List<T> entityList)intdelete(String sqlId, Object param)intdeleteEntity(Class<T> clazz, String entityId)intdeleteEntityWithCompanyId(Class<T> clazz, String id, String companyId)intdeleteLogicalWithCompanyId(Class<T> clazz, String id, String companyId)intdeleteLogicalWithCompanyId(Class<T> clazz, Collection<String> idList, String companyId)intinsert(String sqlId, Object param)intinsertNative(String prepareSql, List<Object> params)intupdate(String sqlId, Object param)intupdateEntity(BaseDO entiry)intupdateEntityWithCompanyId(BaseDO entiry, String companyId)intupdateNative(String prepareSql, List<Object> params)intupdateNotNull(T data, Long ver)intupdateSkipNullBatchAppend(String companyId, T data, Long ver, int batchSize)intupdateSkipNullBatchExecute(Class<T> clazz)intupdateSkipNullBatchExecute(List<UpdateObject> updateList)
-
-
-
方法详细资料
-
createEntity
int createEntity(Object entity)
-
deleteEntityWithCompanyId
int deleteEntityWithCompanyId(Class<T> clazz, String id, String companyId)
-
updateEntity
int updateEntity(BaseDO entiry)
-
updateSkipNullBatchAppend
int updateSkipNullBatchAppend(String companyId, T data, Long ver, int batchSize)
-
deleteLogicalWithCompanyId
int deleteLogicalWithCompanyId(Class<T> clazz, String id, String companyId)
-
deleteLogicalWithCompanyId
int deleteLogicalWithCompanyId(Class<T> clazz, Collection<String> idList, String companyId)
-
updateSkipNullBatchExecute
int updateSkipNullBatchExecute(List<UpdateObject> updateList)
-
-