jiang
2022-07-13 fc89b7b517e191fb6c9b66fa86dd05ebab0f54c5
src/main/java/com/genersoft/iot/vmp/gb28181/bean/DeviceChannel.java
@@ -2,10 +2,21 @@
public class DeviceChannel {
   /**
    * 数据库自增ID
    */
   private int id;
   /**
    * 通道id
    */
   private String channelId;
   /**
    * 设备id
    */
   private String deviceId;
   
   /**
    * 通道名
@@ -111,6 +122,16 @@
    * 云台类型描述字符串
    */
   private String PTZTypeText;
   /**
    * 创建时间
    */
   private String createTime;
   /**
    * 更新时间
    */
   private String updateTime;
   
   /**
    * 在线/离线
@@ -134,6 +155,26 @@
   private double latitude;
   /**
    * 经度 GCJ02
    */
   private double longitudeGcj02;
   /**
    * 纬度 GCJ02
    */
   private double latitudeGcj02;
   /**
    * 经度 WGS84
    */
   private double longitudeWgs84;
   /**
    * 纬度 WGS84
    */
   private double latitudeWgs84;
   /**
    * 子设备数
    */
   private int subCount;
@@ -146,13 +187,38 @@
   /**
    *  是否含有音频
    */
   private  boolean hasAudio;
   private boolean hasAudio;
   /**
    *  是否正在播放
    * 标记通道的类型,0->国标通道 1->直播流通道 2->业务分组/虚拟组织/行政区划
    */
   private  boolean play;
   private int channelType;
   /**
    * 业务分组
    */
   private String businessGroupId;
   /**
    * GPS的更新时间
    */
   private String gpsTime;
   public int getId() {
      return id;
   }
   public void setId(int id) {
      this.id = id;
   }
   public String getDeviceId() {
      return deviceId;
   }
   public void setDeviceId(String deviceId) {
      this.deviceId = deviceId;
   }
   public void setPTZType(int PTZType) {
      this.PTZType = PTZType;
@@ -371,6 +437,38 @@
      this.latitude = latitude;
   }
   public double getLongitudeGcj02() {
      return longitudeGcj02;
   }
   public void setLongitudeGcj02(double longitudeGcj02) {
      this.longitudeGcj02 = longitudeGcj02;
   }
   public double getLatitudeGcj02() {
      return latitudeGcj02;
   }
   public void setLatitudeGcj02(double latitudeGcj02) {
      this.latitudeGcj02 = latitudeGcj02;
   }
   public double getLongitudeWgs84() {
      return longitudeWgs84;
   }
   public void setLongitudeWgs84(double longitudeWgs84) {
      this.longitudeWgs84 = longitudeWgs84;
   }
   public double getLatitudeWgs84() {
      return latitudeWgs84;
   }
   public void setLatitudeWgs84(double latitudeWgs84) {
      this.latitudeWgs84 = latitudeWgs84;
   }
   public int getSubCount() {
      return subCount;
   }
@@ -387,14 +485,6 @@
      this.hasAudio = hasAudio;
   }
   public boolean isPlay() {
      return play;
   }
   public void setPlay(boolean play) {
      this.play = play;
   }
   public String getStreamId() {
      return streamId;
   }
@@ -402,4 +492,44 @@
   public void setStreamId(String streamId) {
      this.streamId = streamId;
   }
   public String getCreateTime() {
      return createTime;
   }
   public void setCreateTime(String createTime) {
      this.createTime = createTime;
   }
   public String getUpdateTime() {
      return updateTime;
   }
   public void setUpdateTime(String updateTime) {
      this.updateTime = updateTime;
   }
   public int getChannelType() {
      return channelType;
   }
   public void setChannelType(int channelType) {
      this.channelType = channelType;
   }
   public String getBusinessGroupId() {
      return businessGroupId;
   }
   public void setBusinessGroupId(String businessGroupId) {
      this.businessGroupId = businessGroupId;
   }
   public String getGpsTime() {
      return gpsTime;
   }
   public void setGpsTime(String gpsTime) {
      this.gpsTime = gpsTime;
   }
}