package org.springblade.common.excel;
|
|
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导入字典转换注解
|
* <p>
|
* 将excel导入的字典label自动转换为字典code
|
*/
|
@Retention(RetentionPolicy.RUNTIME)
|
@Target(ElementType.FIELD)
|
@JacksonAnnotationsInside
|
public @interface ExcelDictItemLabel {
|
|
/**
|
* 字典type
|
*/
|
String type();
|
|
}
|