123456789101112131415161718192021 |
- package com.shkpr.service.alambizplugin.annotation;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * excel字段映射
- *
- * @author 欧阳劲驰
- * @since 0.0.1
- */
- @Retention(RetentionPolicy.RUNTIME)
- @Target(ElementType.FIELD)
- public @interface ExcelMapping {
- /**
- * @return excel表头
- */
- String value();
- }
|