ExcelField.java 433 B

123456789101112131415161718192021
  1. package pub.vie.excel.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. * @Descrption :
  8. * @Author: zoujie
  9. * @Date: 2020-4-15
  10. */
  11. @Target(ElementType.FIELD)
  12. @Retention(RetentionPolicy.RUNTIME)
  13. public @interface ExcelField {
  14. int colIndex();
  15. String dataFormat() default "yyyy-MM-dd";
  16. }