All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.noear.wood.annotation.Db Maven / Gradle / Ivy

There is a newer version: 1.3.14
Show newest version
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 "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy