Interface CatalogTableMapper
- All Superinterfaces:
com.baomidou.mybatisplus.core.mapper.BaseMapper<CatalogTable>,com.baomidou.mybatisplus.core.mapper.Mapper<CatalogTable>
@Mapper
public interface CatalogTableMapper
extends com.baomidou.mybatisplus.core.mapper.BaseMapper<CatalogTable>
-
Method Summary
Modifier and TypeMethodDescriptionintcountByDatabase(CatalogType type, String catalog, String database, CatalogTableKind kind) intdeleteByName(CatalogType type, String catalog, String database, CatalogTableKind kind, String name) selectByDatabase(CatalogType type, String catalog, String database, CatalogTableKind kind) selectByName(CatalogType type, String catalog, String database, CatalogTableKind kind, String name) Methods inherited from interface com.baomidou.mybatisplus.core.mapper.BaseMapper
delete, deleteBatchIds, deleteById, deleteById, deleteById, deleteByIds, deleteByIds, deleteByMap, exists, insert, insert, insert, insertOrUpdate, insertOrUpdate, insertOrUpdate, insertOrUpdate, insertOrUpdate, selectBatchIds, selectBatchIds, selectById, selectByIds, selectByIds, selectByMap, selectByMap, selectCount, selectList, selectList, selectList, selectList, selectMaps, selectMaps, selectMaps, selectMaps, selectMapsPage, selectObjs, selectObjs, selectOne, selectOne, selectPage, update, update, updateById, updateById, updateById
-
Method Details
-
selectByDatabase
List<CatalogTable> selectByDatabase(@Param("type") CatalogType type, @Param("catalog") String catalog, @Param("database") String database, @Param("kind") CatalogTableKind kind) -
countByDatabase
int countByDatabase(@Param("type") CatalogType type, @Param("catalog") String catalog, @Param("database") String database, @Param("kind") CatalogTableKind kind) -
selectByName
Optional<CatalogTable> selectByName(@Param("type") CatalogType type, @Param("catalog") String catalog, @Param("database") String database, @Param("kind") CatalogTableKind kind, @Param("name") String name) -
deleteByName
int deleteByName(@Param("type") CatalogType type, @Param("catalog") String catalog, @Param("database") String database, @Param("kind") CatalogTableKind kind, @Param("name") String name)
-