game-api/ff-game/src/main/java/com/ff/base/annotation/DataSource.java

25 lines
554 B
Java
Raw Normal View History

2025-02-11 15:27:15 +08:00
package com.ff.base.annotation;
import com.ff.base.enums.DataSourceType;
import java.lang.annotation.*;
/**
*
*
*
*
* @author ff
*/
@Target({ ElementType.METHOD, ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface DataSource
{
/**
*
*/
public DataSourceType value() default DataSourceType.MASTER;
}