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 {
|
}
|