cl
4 天以前 91a2be4c5b6a700346f5024267a99e9e4ab9ca57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.vincent.rsf.server.common.datasource;
 
import java.lang.annotation.*;
 
/**
 * 指定数据源
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface UseDataSource {
 
    String value() default DataSourceNames.PRIMARY;
}