You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
694 B

6 years ago
package com.ruoyi.common.annotation;
6 years ago
6 years ago
import com.ruoyi.common.enums.DataSourceType;
6 years ago
import java.lang.annotation.*;
6 years ago
/**
*
* <p>
*
*
6 years ago
* @author ruoyi
* @deprecated 3.6.0 使 {@link com.baomidou.dynamic.datasource.annotation.DS}
6 years ago
*/
@Target({ElementType.METHOD, ElementType.TYPE})
6 years ago
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Deprecated
public @interface DataSource {
6 years ago
/**
*
*/
DataSourceType value() default DataSourceType.MASTER;
6 years ago
}