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

top.summerboot.orm.association.annotation.JoinExpression Maven / Gradle / Ivy

The newest version!
package top.summerboot.orm.association.annotation;

import java.lang.annotation.*;

/**
 * @author xieshuang
 */
@Documented
@Target({ElementType.FIELD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface JoinExpression {

    /**
     * 表达式值
     */
    String value();

    /**
     * 是否一直参与join
     */
    boolean allJoin() default false;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy