org.zodiac.mybatisplus.binding.annotation.BindEntityList Maven / Gradle / Ivy
package org.zodiac.mybatisplus.binding.annotation;
import java.lang.annotation.*;
/**
* 绑定Entity集合注解(1-n)。
*
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface BindEntityList {
/***
* 对应的entity类。
*
* @return 类型对象
*/
Class entity();
/***
* JOIN连接条件。
*
* @return 条件
*/
String condition();
/**
* 深度绑定。
*
* @return true 是,false 否
*/
boolean deepBind() default false;
/**
* EntityList排序。如:`id:DESC,age:ASC`。
*
* @return 排序方式
*/
String orderBy() default "";
/**
* 分隔符,用于拆解拼接存储的多个id值。
*
* @return 分隔符
*/
String splitBy() default "";
}