src/main/java/com/genersoft/iot/vmp/gb28181/transmit/callback/RequestMessage.java
@@ -9,9 +9,7 @@
   
   private String id;
   private String deviceId;
   private String type;
   private String key;
   
   private Object data;
   
@@ -23,22 +21,12 @@
      this.id = id;
   }
   public String getDeviceId() {
      return deviceId;
   public void setKey(String key) {
      this.key = key;
   }
   public void setDeviceId(String deviceId) {
      this.deviceId = deviceId;
      this.id = type + deviceId;
   }
   public String getType() {
      return type;
   }
   public void setType(String type) {
      this.type = type;
      this.id = type + deviceId;
   public String getKey() {
      return key;
   }
   public Object getData() {