32e5f9b7de0c687613405fca13c607e044c3ca91.svn-base 392 B

123456789101112131415161718192021
  1. package cn.com.goldenwater.dcproj.target;
  2. import java.lang.annotation.*;
  3. /**
  4. * Created by jinshui on 2020/4/7.
  5. */
  6. @Target({ElementType.FIELD, ElementType.PARAMETER})
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Documented
  9. public @interface FillInParam {
  10. /**
  11. * 下级标识,没有为空
  12. * @return
  13. */
  14. String ivalue() default "";
  15. String childreColums() default "";
  16. }