zhaowenxuan
2025-02-07 5563f9d2c54277297eda3db7924997392d9ce887
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ltkj.common.db.anno;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * control类或接口方法标注则进行动态切库
 * @Company: 西安路泰科技有限公司
 * @Author: zhaowenxuan
 * @Date: 2025/02/07 10:30
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface DataSource {
}