19 lines
321 B
Java
19 lines
321 B
Java
package com.muyu.common.datasource.annotation;
|
|
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* 主库数据源
|
|
*
|
|
* @author muyu
|
|
*/
|
|
@Target({ElementType.TYPE, ElementType.METHOD})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
@DS("master")
|
|
public @interface Master {
|
|
|
|
}
|