Uses of Enum Class
com.imyeyu.spring.bean.Logic
Packages that use Logic
Package
Description
配置对象
基本 MyBatis 映射
其他工具
-
Uses of Logic in com.imyeyu.spring.bean
Fields in com.imyeyu.spring.bean declared as LogicModifier and TypeFieldDescriptionprotected LogicPage.equalsLogic精确匹配连接逻辑protected LogicPage.likesLogic模糊匹配连接逻辑Methods in com.imyeyu.spring.bean that return LogicModifier and TypeMethodDescriptionPage.getEqualsLogic()精确匹配连接逻辑Page.getLikesLogic()模糊匹配连接逻辑static LogicReturns the enum constant of this class with the specified name.static Logic[]Logic.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.imyeyu.spring.bean with parameters of type LogicModifier and TypeMethodDescriptionvoidPage.setEqualsLogic(Logic equalsLogic) 精确匹配连接逻辑voidPage.setLikesLogic(Logic likesLogic) 模糊匹配连接逻辑 -
Uses of Logic in com.imyeyu.spring.mapper
Methods in com.imyeyu.spring.mapper with parameters of type LogicModifier and TypeMethodDescriptionvoidBaseMapper.deleteAllByExample(T t, Logic logic) 根据示例批量逻辑删除voidDynamicTableMapper.deleteAllByExample(String tableName, T entity, Logic logic) 根据示例批量逻辑删除voidBaseMapper.destroyAllByExample(T t, Logic logic) 根据示例批量销毁(物理删除)voidDynamicTableMapper.destroyAllByExample(String tableName, T entity, Logic logic) 根据示例批量销毁(物理删除)BaseMapper.selectAllByExample(T t, Logic logic) 根据示例查询全部数据DynamicTableMapper.selectAllByExample(String tableName, T entity, Logic logic) 根据示例查询全部数据RawMapper.selectAllByExampleRaw(T t, Logic logic) 根据示例查询全部数据BaseMapper.selectByExample(T t, Logic logic) 根据示例查询单条数据DynamicTableMapper.selectByExample(String tableName, T entity, Logic logic) 根据示例查询单条数据RawMapper.selectByExampleRaw(T t, Logic logic) 根据示例查询单条数据 -
Uses of Logic in com.imyeyu.spring.util
Methods in com.imyeyu.spring.util with parameters of type LogicModifier and TypeMethodDescriptionprotected StringBaseSQLProvider.buildDeleteAllByExampleSQL(BaseSQLProvider.EntityMeta meta, String tableName, Object entity, String paramPrefix, Logic logic) 构建批量逻辑删除 SQLprotected StringBaseSQLProvider.buildDestroyAllByExampleSQL(BaseSQLProvider.EntityMeta meta, String tableName, Object entity, String paramPrefix, Logic logic) 构建批量物理删除 SQLprotected StringBaseSQLProvider.buildExampleConditions(BaseSQLProvider.EntityMeta meta, Object entity, String paramPrefix, Logic logic) 构建示例查询条件子句protected StringBaseSQLProvider.buildSelectAllByExampleSQL(BaseSQLProvider.EntityMeta meta, String tableName, Object entity, String paramPrefix, Logic logic) 构建根据示例查询全部 SQLDynamicTableSQLProvider.deleteAllByExample(org.apache.ibatis.builder.annotation.ProviderContext context, String tableName, Object entity, Logic logic) 根据示例批量逻辑删除SQLProvider.deleteAllByExample(Object entity, Logic logic) 根据示例批量逻辑删除DynamicTableSQLProvider.destroyAllByExample(org.apache.ibatis.builder.annotation.ProviderContext context, String tableName, Object entity, Logic logic) 根据示例批量物理删除SQLProvider.destroyAllByExample(Object entity, Logic logic) 根据示例批量销毁(物理删除)DynamicTableSQLProvider.selectAllByExample(org.apache.ibatis.builder.annotation.ProviderContext context, String tableName, Object entity, Logic logic) 根据实体非空字段使用等号查询RawSQLProvider.selectAllByExample(Object entity, Logic logic) SQLProvider.selectAllByExample(Object entity, Logic logic) 根据实体非空字段使用等号查询DynamicTableSQLProvider.selectByExample(org.apache.ibatis.builder.annotation.ProviderContext context, String tableName, Object entity, Logic logic) 根据实体非空字段使用等号查询RawSQLProvider.selectByExample(Object entity, Logic logic) SQLProvider.selectByExample(Object entity, Logic logic) 根据实体非空字段使用等号查询