ImportIndex.java 341 B

123456789101112131415
  1. package com.steerinfo.dil.annotaion;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. /**
  7. * 导入时索引
  8. */
  9. @Target(ElementType.FIELD)
  10. @Retention(RetentionPolicy.RUNTIME)
  11. public @interface ImportIndex {
  12. int index();
  13. }