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

win.doyto.query.core.NestedQueries Maven / Gradle / Ivy

There is a newer version: 0.2.2.1-RELEASE
Show newest version
package win.doyto.query.core;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * NestedQueries
 *
 * @author f0rb on 2019-05-28
 */
@Target(FIELD)
@Retention(RUNTIME)
public @interface NestedQueries {
    NestedQuery[] value();

    String column() default "id";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy