| 123456789101112131415161718192021222324 |
- /**
- * Copyright (c) 2018 yiidata.com All rights reserved.
- *
- * http://yiidata.com
- *
- *
- */
- package com.yiidata.intergration.web.datasource.annotation;
- import java.lang.annotation.*;
- /**
- * 多数据源注解
- *
- * @author zhenqin
- */
- @Target({ElementType.METHOD, ElementType.TYPE})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- @Inherited
- public @interface DataSource {
- String value() default "";
- }
|