mybatis annotations

1、Alias别名
 @Documented
 @Retention(RetentionPolicy.RUNTIME)
 @Target({ElementType.TYPE})
 public @interface Alias {
     String value();
 }

   用于类、接口(包括注解类型)、枚举类型的注解。用于声明别名

2、

猜你喜欢

转载自blog.csdn.net/yyqhwr/article/details/82458587
今日推荐