648540858
2022-07-03 72c1b36d6d2ece497e032c8434641d6576590f9d
src/main/java/com/genersoft/iot/vmp/gb28181/bean/Device.java
@@ -1,6 +1,10 @@
package com.genersoft.iot.vmp.gb28181.bean;
/**
 * 国标设备/平台
 * @author lin
 */
public class Device {
   /**
@@ -100,11 +104,6 @@
   private String mediaServerId;
   /**
    * 首次注册
    */
   private boolean firsRegister;
   /**
    * 字符集, 支持 UTF-8 与 GB2312
    */
   private String charset ;
@@ -132,7 +131,12 @@
   /**
    * 是否开启ssrc校验,默认关闭,开启可以防止串流
    */
   private boolean ssrcCheck;
   private boolean ssrcCheck = true;
   /**
    * 地理坐标系, 目前支持 WGS84,GCJ02 TODO CGCS2000
    */
   private String geoCoordSys;
   public String getDeviceId() {
@@ -279,14 +283,6 @@
      this.mediaServerId = mediaServerId;
   }
   public boolean isFirsRegister() {
      return firsRegister;
   }
   public void setFirsRegister(boolean firsRegister) {
      this.firsRegister = firsRegister;
   }
   public String getCharset() {
      return charset;
   }
@@ -335,4 +331,12 @@
      this.ssrcCheck = ssrcCheck;
   }
   public String getGeoCoordSys() {
      return geoCoordSys;
   }
   public void setGeoCoordSys(String geoCoordSys) {
      this.geoCoordSys = geoCoordSys;
   }
}