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