win.doyto.query.core.NestedQuery Maven / Gradle / Ivy
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;
/**
* NestedQuery
*
* @author f0rb on 2019-05-28
*/
@Target(FIELD)
@Retention(RUNTIME)
public @interface NestedQuery {
String column() default "id";
String left();
String table();
String right() default "";
String extra() default "";
}