| | |
| | | |
| | | |
| | | /** |
| | | * 数据库自赠ID |
| | | * 数据库自增ID |
| | | */ |
| | | private int id; |
| | | |
| | |
| | | private double latitude; |
| | | |
| | | /** |
| | | * 经度 GCJ02 |
| | | */ |
| | | private double longitudeGcj02; |
| | | |
| | | /** |
| | | * 纬度 GCJ02 |
| | | */ |
| | | private double latitudeGcj02; |
| | | |
| | | /** |
| | | * 经度 WGS84 |
| | | */ |
| | | private double longitudeWgs84; |
| | | |
| | | /** |
| | | * 纬度 WGS84 |
| | | */ |
| | | private double latitudeWgs84; |
| | | |
| | | /** |
| | | * 子设备数 |
| | | */ |
| | | private int subCount; |
| | |
| | | * 是否含有音频 |
| | | */ |
| | | private boolean hasAudio; |
| | | |
| | | /** |
| | | * 标记通道的类型,0->国标通道 1->直播流通道 2->业务分组/虚拟组织/行政区划 |
| | | */ |
| | | private int channelType; |
| | | |
| | | /** |
| | | * 业务分组 |
| | | */ |
| | | private String businessGroupId; |
| | | |
| | | /** |
| | | * GPS的更新时间 |
| | | */ |
| | | private String gpsTime; |
| | | |
| | | public int getId() { |
| | | return id; |
| | |
| | | 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; |
| | | } |
| | |
| | | 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; |
| | | } |
| | | } |