Uses of Class
cool.scx.data.jdbc.mapping.AnnotationConfigTable
Packages that use AnnotationConfigTable
-
Uses of AnnotationConfigTable in cool.scx.data.jdbc
Methods in cool.scx.data.jdbc that return AnnotationConfigTable -
Uses of AnnotationConfigTable in cool.scx.data.jdbc.sql_builder
Methods in cool.scx.data.jdbc.sql_builder with parameters of type AnnotationConfigTableModifier and TypeMethodDescriptionstatic AnnotationConfigColumn[]SQLBuilderHelper.filterByExcluded(String[] fieldNames, AnnotationConfigTable table) 根据黑名单进行过滤 (注意在 fieldExpressions 中存在的 fieldName 也会被移除)static AnnotationConfigColumn[]SQLBuilderHelper.filterByFieldExpressions(Map<String, String> fieldExpressions, AnnotationConfigTable table, AnnotationConfigColumn... columns) static AnnotationConfigColumn[]SQLBuilderHelper.filterByFieldPolicy(FieldPolicy fieldPolicy, AnnotationConfigTable table) 根据 字段策略过滤 可以插入的列 (注意在 fieldExpressions 中存在的 fieldName 也会被移除)static AnnotationConfigColumn[]SQLBuilderHelper.filterByFieldPolicy(FieldPolicy fieldPolicy, AnnotationConfigTable table, Object entity) 根据 字段策略过滤 可以插入的列static AnnotationConfigColumn[]SQLBuilderHelper.filterByFilterMode(FieldPolicy fieldPolicy, AnnotationConfigTable table) static AnnotationConfigColumn[]SQLBuilderHelper.filterByIncluded(String[] fieldNames, AnnotationConfigTable table) 根据白名单进行过滤 (注意在 fieldExpressions 中存在的 fieldName 也会被移除)Constructors in cool.scx.data.jdbc.sql_builder with parameters of type AnnotationConfigTableModifierConstructorDescriptionInsertSQLBuilder(AnnotationConfigTable table, Dialect dialect, JDBCColumnNameParser columnNameParser) SelectSQLBuilder(AnnotationConfigTable table, Dialect dialect, JDBCWhereParser whereParser, JDBCGroupByParser groupByParser, JDBCOrderByParser orderByParser) UpdateSQLBuilder(AnnotationConfigTable table, Dialect dialect, JDBCColumnNameParser columnNameParser, JDBCWhereParser whereParser, JDBCOrderByParser orderByParser)