JsonMapper.java 344 B

12345678910111213141516171819
  1. package com.poyee.annotation;
  2. import org.jetbrains.annotations.NotNull;
  3. import java.lang.annotation.*;
  4. /**
  5. * json映射
  6. */
  7. @Target({ElementType.FIELD})
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @Documented
  10. public @interface JsonMapper {
  11. @NotNull
  12. String name() default "";
  13. //类型举例
  14. String readConverterExp() default "" ;
  15. }