MessageElement.java 315 B

1234567891011121314151617
  1. package com.genersoft.iot.vmp.gb28181.utils;
  2. import java.lang.annotation.*;
  3. /**
  4. * @author gaofuwang
  5. * @version 1.0
  6. * @date 2022/6/28 14:58
  7. */
  8. @Target({ElementType.FIELD})
  9. @Retention(RetentionPolicy.RUNTIME)
  10. @Documented
  11. public @interface MessageElement {
  12. String value();
  13. String subVal() default "";
  14. }