| 枚举 | 说明 |
|---|---|
| MappingType |
The mapping relationship between the object returned by the method and the target object.
|
| 注释类型 | 说明 |
|---|---|
| ArgAutoOperate |
Declaration requires automatic processing of method input parameters, for example:
@ArgAutoOperate({
@AutoOperate(value = "list", type = A.class),
@AutoOperate(value = "b", type = B.class)
})
public void doSomething(List list, B b) {
// do something
}
or:
|
| Assemble |
Declare an operation of assemble。
|
| Assemble.List |
Batch operation.
|
| AssembleEnum |
Declare an operation of assemble based on enum container.
|
| AssembleEnum.List |
Batch operation.
|
| AssembleMp |
Declare an operation of assemble using the mybatis plus default interface method as the data source.
|
| AssembleMp.List |
Batch operation.
|
| AutoOperate |
Declare the return value or parameter of the method(if the method is annotated by
ArgAutoOperate) need process. |
| ContainerCache |
If a method has been annotated by
ContainerMethod,
upgrade it to a cacheable container. |
| ContainerConstant |
Indicates that member variables in a class can be used as containers.
|
| ContainerConstant.Exclude |
Does not contain specific properties.
|
| ContainerConstant.Include |
Include specific properties.
|
| ContainerConstant.Name |
Specify the key name for the attribute.
|
| ContainerEnum |
The enumeration representing the annotation can be converted to an enumeration container of the specified type.
|
| ContainerMethod |
Indicates that the annotation or the method pointed to by the annotation
can be converted to a method container of the specified type.
|
| ContainerMethod.List |
Batch operation.
|
| ContainerParam |
Marker a parameter as dynamic container in execution.
|
| Disassemble |
Declare a disassembly operation.
|
| Disassemble.List |
Batch operation.
|
| Mapping |
Field mapping configuration,
which describes which data object attributes are mapped to which target object attributes.
|
| MappingTemplate |
Annotations are used to declare a set of field mapping configurations on the class,
and are introduced in
Assemble.propTemplates() by specifying the annotated class. |
| Operator |
Marker an interface as an operator.
|
Copyright © 2023. All rights reserved.