14 lines
273 B
Java
14 lines
273 B
Java
package com.sqx.datasource.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* 多数据源注解
|
|
*/
|
|
@Target({ElementType.METHOD, ElementType.TYPE})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
@Inherited
|
|
public @interface DataSource {
|
|
String value() default "";
|
|
}
|