MsgId.java 285 B

123456789101112131415
  1. package com.genersoft.iot.vmp.jt1078.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * @author QingtaiJiang
  5. * @date 2023/4/27 18:31
  6. * @email qingtaij@163.com
  7. */
  8. @Target(ElementType.TYPE)
  9. @Retention(RetentionPolicy.RUNTIME)
  10. @Documented
  11. public @interface MsgId {
  12. String id();
  13. }