ExcelExport.java 405 B

123456789101112131415161718
  1. package com.template.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. @Target({ElementType.FIELD})
  7. @Retention(RetentionPolicy.RUNTIME)
  8. public @interface ExcelExport {
  9. String value();
  10. int sort() default 0;
  11. String kv() default "";
  12. String example() default "";
  13. }