索引
All Classes and Interfaces|所有程序包
A
- apply() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
映射表查询条件之 apply
等效于 Wrappers.query().apply(xxx); - apply() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
映射表查询条件之 apply
等效于 Wrappers.query().apply(xxx); - Apply - com.github.yulichang.annotation中的Annotation Interface
-
映射表条件 用法参考 mybatis plus wrapper 的 .apply()方法
- args() - annotation interface 中的元素 com.github.yulichang.annotation.Apply
-
.apply() 对应的可变参数
B
- BETWEEN - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
C
- cache() - annotation interface 中的元素 com.github.yulichang.annotation.Table
-
是否缓存
- classPackage() - annotation interface 中的元素 com.github.yulichang.annotation.Table
-
生成类的包名
- column() - annotation interface 中的元素 com.github.yulichang.annotation.Condition
-
数据库列名
- com.github.yulichang.annotation - 程序包 com.github.yulichang.annotation
- com.github.yulichang.annotation.enums - 程序包 com.github.yulichang.annotation.enums
- condition() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
映射表查询条件
- condition() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
映射表查询条件
- Condition - com.github.yulichang.annotation中的Annotation Interface
-
映射表条件
D
- DynamicTableName - com.github.yulichang.annotation中的Annotation Interface
-
动态表名注解
E
- EntityMapping - com.github.yulichang.annotation中的Annotation Interface
-
实体类关系映射注解
- EQ - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
F
- FieldMapping - com.github.yulichang.annotation中的Annotation Interface
-
字段关系映射注解
- first() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
映射表查询条件之 first
等效于 Wrappers.query().first(xxx); - first() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
映射表查询条件之 first
等效于 Wrappers.query().first(xxx);
G
- GE - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- genTables() - annotation interface 中的元素 com.github.yulichang.annotation.Table
-
是否在Tables中生成对应的类字段
- GT - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
I
- IN - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- IS_NOT_NULL - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- IS_NULL - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- isThrowExp() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
一对一查询时 如果查询到多条记录是否抛出异常
true 抛出异常
false 不抛异常,获取列表第一条数据 - isThrowExp() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
一对一查询时 如果查询到多条记录是否抛出异常
true 抛出异常
false 不抛异常,获取列表第一条数据
J
- joinField() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
关联类的字段名称 (是实体类字段名称而不是数据库字段名称)
默认获取关联类上定义的主键 @TableId - joinField() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
关联类的字段名称 (是实体类字段名称而不是数据库字段名称)
默认获取关联类上定义的主键 @TableId
K
L
- last() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
映射表查询条件之 last
建议不要在这使用分页语句,会导致关联查的时候查询不全
等效于 Wrappers.query().last(xxx); - last() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
映射表查询条件之 last
建议不要在这使用分页语句,会导致关联查的时候查询不全
等效于 Wrappers.query().last(xxx); - LE - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- LIKE - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- LT - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
N
- NE - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- NOT - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- NOT_BETWEEN - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- NOT_IN - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
- NOT_LIKE - enum class 中的枚举常量 com.github.yulichang.annotation.enums.SqlKeyword
O
- orderByAsc() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
映射表查询条件之 orderBy
等效于 Wrappers.query().orderByAsc(xxx); - orderByAsc() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
映射表查询条件之 orderBy
等效于 Wrappers.query().orderByAsc(xxx); - orderByDesc() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
映射表查询条件之 orderByDesc
等效于 Wrappers.query().orderByDesc(xxx); - orderByDesc() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
映射表查询条件之 orderByDesc
等效于 Wrappers.query().orderByDesc(xxx);
S
- select() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
注意!!!
- select() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
字段映射对应的属性名
- SqlKeyword - com.github.yulichang.annotation.enums中的Enum Class
T
- Table - com.github.yulichang.annotation中的Annotation Interface
-
apt注解
- tablesClassName() - annotation interface 中的元素 com.github.yulichang.annotation.Table
-
Tables中的字段名 默认大写的类名
- tablesClassPackage() - annotation interface 中的元素 com.github.yulichang.annotation.Table
-
Tables中的字段名 默认大写的类名
- tag() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
关联的数据库实体类
默认获取此注解所对应的类 - tag() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
关联的数据库实体类
默认获取此注解所对应的类 - thisField() - annotation interface 中的元素 com.github.yulichang.annotation.EntityMapping
-
当前类的关联的字段名称 (是实体类字段名称而不是数据库字段名称)
默认获取当前类上定义的主键 @TableId - thisField() - annotation interface 中的元素 com.github.yulichang.annotation.FieldMapping
-
当前类的关联的字段名称 (是实体类字段名称而不是数据库字段名称)
默认获取当前类上定义的主键 @TableId
V
- value() - annotation interface 中的元素 com.github.yulichang.annotation.Apply
-
sql片段
- value() - annotation interface 中的元素 com.github.yulichang.annotation.Condition
-
对应的值 一般是一个值 如果条件是 between 会取前两个 如果条件是 in 就会取全部
- value() - annotation interface 中的元素 com.github.yulichang.annotation.Table
-
APT类名
- valueOf(String) - enum class中的静态方法 com.github.yulichang.annotation.enums.SqlKeyword
-
Returns the enum constant of this class with the specified name.
- values() - enum class中的静态方法 com.github.yulichang.annotation.enums.SqlKeyword
-
Returns an array containing the constants of this enum class, in the order they are declared.
All Classes and Interfaces|所有程序包