ReadConverterExpFormat.java 241 B

12345678910111213
  1. package com.poyee.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * 列举数据转换注解
  5. */
  6. @Target({ElementType.FIELD})
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Documented
  9. public @interface ReadConverterExpFormat {
  10. String value();
  11. }