package com.poyee.annotation; import java.lang.annotation.*; /** * 列举数据转换注解 */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface ReadConverterExpFormat { String value(); }