ExcelMapping.java 448 B

123456789101112131415161718192021
  1. package com.shkpr.service.alambizplugin.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 欧阳劲驰
  10. * @since 0.0.1
  11. */
  12. @Retention(RetentionPolicy.RUNTIME)
  13. @Target(ElementType.FIELD)
  14. public @interface ExcelMapping {
  15. /**
  16. * @return excel表头
  17. */
  18. String value();
  19. }