Sign in

guzijian / wvp-GB28181-pro · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wvp-GB28181-pro
  • ..
  • utils
  • MessageElement.java
  • 修复WVP作为下级平台接受devicecontrol命令处理-调试修改逻辑
    55ee6f5f
    gaofw189 authored
    2023-02-07 09:26:08 +0800  
    Browse Code »
MessageElement.java 315 Bytes
Edit Raw Blame History Permalink
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 "";
}