Excels.java 362 B

1234567891011121314151617
  1. package com.phm.common.annotation;
  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. * Excel注解集
  8. *
  9. * @author phm
  10. */
  11. @Target(ElementType.FIELD)
  12. @Retention(RetentionPolicy.RUNTIME)
  13. public @interface Excels {
  14. public Excel[] value();
  15. }