org.noear.wood.annotation.Db Maven / Gradle / Ivy
package org.noear.wood.annotation;
import java.lang.annotation.*;
/**
* 为Wood对象,指定数据源(如 Mapper)
*
* @author noear
* @since 3.2
* */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.TYPE})
@Documented
public @interface Db {
String value() default "";
}