Excels.java 380 B

12345678910111213141516171819
  1. package cn.iocoder.dashboard.framework.excel;
  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 ruoyi
  10. */
  11. @Deprecated
  12. @Target(ElementType.FIELD)
  13. @Retention(RetentionPolicy.RUNTIME)
  14. public @interface Excels
  15. {
  16. Excel[] value();
  17. }