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