feat: 🆕 新增多数据源功能

This commit is contained in:
2023-02-14 16:53:25 +08:00
parent 8f3da0bf2e
commit 971b91329f
11 changed files with 455 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
package com.cnbm.dynamic.datasource.annotation;
import java.lang.annotation.*;
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface DataSource {
String value() default "";
}