parent
e71c6c5d70
commit
c378ea1073
@ -0,0 +1,29 @@
|
||||
package com.ibeetl.admin.core.annotation;
|
||||
|
||||
import com.ibeetl.admin.core.service.CoreBaseService;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 是否开启深度 解析注解
|
||||
*
|
||||
* 可以配合多个注解使用
|
||||
* {@link Dict }
|
||||
* {@link DictEnum }
|
||||
* TODO 需要注意可能会存在无限递归的情况
|
||||
* 实现方法 {@link CoreBaseService#queryEntityAfter(Object)}
|
||||
* </p>
|
||||
*
|
||||
* @author mlx
|
||||
* @date 2022/9/21
|
||||
* @modified
|
||||
*/
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.FIELD)
|
||||
public @interface DictDeep {
|
||||
|
||||
}
|
Loading…
Reference in New Issue