ExcelContext.java 488 B

1234567891011121314151617181920212223242526
  1. package com.sckw.excel.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * @author lfdc
  5. * @version v1
  6. * @create 2020-11-28 15:37:35
  7. * @copyright
  8. */
  9. @Target({ElementType.TYPE})
  10. @Retention(RetentionPolicy.RUNTIME)
  11. @Documented
  12. public @interface ExcelContext {
  13. String fileName() default "";
  14. String sheetName();
  15. @Target({ElementType.TYPE})
  16. @Retention(RetentionPolicy.RUNTIME)
  17. @Documented
  18. public @interface Query {
  19. boolean combine() default false;
  20. }
  21. }