package com.artfess.easyExcel.annotaion; import com.fasterxml.jackson.annotation.JacksonAnnotationsInside; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * excel导入字典转换注解 *

* 将excel导入的字典label自动转换为字典code */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) @JacksonAnnotationsInside public @interface ExcelDictItemLabel { /** * 字典key */ String type(); }