ExcelField.java 381 B

1234567891011121314151617181920
  1. package com.sooka.common.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * Created by binary on 2017/4/10.
  5. */
  6. @Documented
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Target(ElementType.FIELD)
  9. public @interface ExcelField {
  10. String value() default "";
  11. String dateFormat() default "";
  12. boolean isOnlyImport() default false;
  13. String isNullDefaultValue() default "N/A";
  14. }