Package org.apache.ibatis.type
Annotation Type Alias
-
@Documented @Retention(RUNTIME) @Target(TYPE) public @interface AliasThe annotation that specify alias name.How to use:
@Alias("Email") public class UserEmail { // ... }
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringvalueReturn the alias name.
-