| 123456789101112131415161718192021 |
- package cn.com.goldenwater.dcproj.target;
- import java.lang.annotation.*;
- /**
- * Created by jinshui on 2020/4/7.
- */
- @Target({ElementType.FIELD, ElementType.PARAMETER})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface FillInParam {
- /**
- * 下级标识,没有为空
- * @return
- */
- String ivalue() default "";
- String childreColums() default "";
- }
|