dongyukun
9 天以前 e88fba9645a57535d858ce48da8e9d9a3dc84adc
提交 | 用户 | 时间
d45017 1 package com.iailab.framework.tenant.core.db.dynamic;
2
3 import com.baomidou.dynamic.datasource.annotation.DS;
4
5 import java.lang.annotation.*;
6
7 /**
8  * 使用租户所在的数据源
9  *
10  * 使用方式:当我们希望一个表使用租户所在的数据源,可以在该表的 Mapper 上添加该注解
11  *
12  * @author 芋道源码
13  */
14 @Target({ElementType.TYPE, ElementType.METHOD})
15 @Retention(RetentionPolicy.RUNTIME)
16 @Documented
17 @DS(TenantDS.KEY)
18 public @interface TenantDS {
19
20     /**
21      * 租户对应的数据源的占位符
22      */
23     String KEY = "#context.tenantId";
24
25 }