| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- package com.genersoft.iot.vmp.gb28181.bean;
- import io.swagger.v3.oas.annotations.media.Schema;
- /**
- * 国标设备/平台
- * @author lin
- */
- @Schema(description = "国标设备/平台")
- public class Device {
- /**
- * 设备国标编号
- */
- @Schema(description = "设备国标编号")
- private String deviceId;
- /**
- * 设备名
- */
- @Schema(description = "名称")
- private String name;
-
- /**
- * 生产厂商
- */
- @Schema(description = "生产厂商")
- private String manufacturer;
-
- /**
- * 型号
- */
- @Schema(description = "型号")
- private String model;
-
- /**
- * 固件版本
- */
- @Schema(description = "固件版本")
- private String firmware;
- /**
- * 传输协议
- * UDP/TCP
- */
- @Schema(description = "传输协议(UDP/TCP)")
- private String transport;
- /**
- * 数据流传输模式
- * UDP:udp传输
- * TCP-ACTIVE:tcp主动模式
- * TCP-PASSIVE:tcp被动模式
- */
- @Schema(description = "数据流传输模式")
- private String streamMode;
- /**
- * wan地址_ip
- */
- @Schema(description = "IP")
- private String ip;
- /**
- * wan地址_port
- */
- @Schema(description = "端口")
- private int port;
- /**
- * wan地址
- */
- @Schema(description = "wan地址")
- private String hostAddress;
-
- /**
- * 在线
- */
- @Schema(description = "是否在线,1为在线,0为离线")
- private int online;
- /**
- * 注册时间
- */
- @Schema(description = "注册时间")
- private String registerTime;
- /**
- * 心跳时间
- */
- @Schema(description = "心跳时间")
- private String keepaliveTime;
- /**
- * 心跳间隔
- */
- @Schema(description = "心跳间隔")
- private int keepaliveIntervalTime;
- /**
- * 通道个数
- */
- @Schema(description = "通道个数")
- private int channelCount;
- /**
- * 注册有效期
- */
- @Schema(description = "注册有效期")
- private int expires;
- /**
- * 创建时间
- */
- @Schema(description = "创建时间")
- private String createTime;
- /**
- * 更新时间
- */
- @Schema(description = "更新时间")
- private String updateTime;
- /**
- * 设备使用的媒体id, 默认为null
- */
- @Schema(description = "设备使用的媒体id, 默认为null")
- private String mediaServerId;
- /**
- * 字符集, 支持 UTF-8 与 GB2312
- */
- @Schema(description = "符集, 支持 UTF-8 与 GB2312")
- private String charset ;
- /**
- * 目录订阅周期,0为不订阅
- */
- @Schema(description = "目录订阅周期,0为不订阅")
- private int subscribeCycleForCatalog;
- /**
- * 移动设备位置订阅周期,0为不订阅
- */
- @Schema(description = "移动设备位置订阅周期,0为不订阅")
- private int subscribeCycleForMobilePosition;
- /**
- * 移动设备位置信息上报时间间隔,单位:秒,默认值5
- */
- @Schema(description = "移动设备位置信息上报时间间隔,单位:秒,默认值5")
- private int mobilePositionSubmissionInterval = 5;
- /**
- * 报警订阅周期,0为不订阅
- */
- @Schema(description = "报警心跳时间订阅周期,0为不订阅")
- private int subscribeCycleForAlarm;
- /**
- * 是否开启ssrc校验,默认关闭,开启可以防止串流
- */
- @Schema(description = "是否开启ssrc校验,默认关闭,开启可以防止串流")
- private boolean ssrcCheck = true;
- /**
- * 地理坐标系, 目前支持 WGS84,GCJ02
- */
- @Schema(description = "地理坐标系, 目前支持 WGS84,GCJ02")
- private String geoCoordSys;
- /**
- * 树类型 国标规定了两种树的展现方式 行政区划:CivilCode 和业务分组:BusinessGroup
- */
- @Schema(description = "树类型 国标规定了两种树的展现方式 行政区划:CivilCode 和业务分组:BusinessGroup")
- private String treeType;
- @Schema(description = "密码")
- private String password;
- @Schema(description = "收流IP")
- private String sdpIp;
- @Schema(description = "SIP交互IP(设备访问平台的IP)")
- private String localIp;
- @Schema(description = "是否作为消息通道")
- private boolean asMessageChannel;
- public String getDeviceId() {
- return deviceId;
- }
- public void setDeviceId(String deviceId) {
- this.deviceId = deviceId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getManufacturer() {
- return manufacturer;
- }
- public void setManufacturer(String manufacturer) {
- this.manufacturer = manufacturer;
- }
- public String getModel() {
- return model;
- }
- public void setModel(String model) {
- this.model = model;
- }
- public String getFirmware() {
- return firmware;
- }
- public void setFirmware(String firmware) {
- this.firmware = firmware;
- }
- public String getTransport() {
- return transport;
- }
- public void setTransport(String transport) {
- this.transport = transport;
- }
- public String getStreamMode() {
- return streamMode;
- }
- public void setStreamMode(String streamMode) {
- this.streamMode = streamMode;
- }
- public String getIp() {
- return ip;
- }
- public void setIp(String ip) {
- this.ip = ip;
- }
- public int getPort() {
- return port;
- }
- public void setPort(int port) {
- this.port = port;
- }
- public String getHostAddress() {
- return hostAddress;
- }
- public void setHostAddress(String hostAddress) {
- this.hostAddress = hostAddress;
- }
- public int getOnline() {
- return online;
- }
- public void setOnline(int online) {
- this.online = online;
- }
- public int getChannelCount() {
- return channelCount;
- }
- public void setChannelCount(int channelCount) {
- this.channelCount = channelCount;
- }
- public String getRegisterTime() {
- return registerTime;
- }
- public void setRegisterTime(String registerTime) {
- this.registerTime = registerTime;
- }
- public String getKeepaliveTime() {
- return keepaliveTime;
- }
- public void setKeepaliveTime(String keepaliveTime) {
- this.keepaliveTime = keepaliveTime;
- }
- public int getExpires() {
- return expires;
- }
- public void setExpires(int expires) {
- this.expires = expires;
- }
- 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 String getMediaServerId() {
- return mediaServerId;
- }
- public void setMediaServerId(String mediaServerId) {
- this.mediaServerId = mediaServerId;
- }
- public String getCharset() {
- return charset;
- }
- public void setCharset(String charset) {
- this.charset = charset;
- }
- public int getSubscribeCycleForCatalog() {
- return subscribeCycleForCatalog;
- }
- public void setSubscribeCycleForCatalog(int subscribeCycleForCatalog) {
- this.subscribeCycleForCatalog = subscribeCycleForCatalog;
- }
- public int getSubscribeCycleForMobilePosition() {
- return subscribeCycleForMobilePosition;
- }
- public void setSubscribeCycleForMobilePosition(int subscribeCycleForMobilePosition) {
- this.subscribeCycleForMobilePosition = subscribeCycleForMobilePosition;
- }
- public int getMobilePositionSubmissionInterval() {
- return mobilePositionSubmissionInterval;
- }
- public void setMobilePositionSubmissionInterval(int mobilePositionSubmissionInterval) {
- this.mobilePositionSubmissionInterval = mobilePositionSubmissionInterval;
- }
- public int getSubscribeCycleForAlarm() {
- return subscribeCycleForAlarm;
- }
- public void setSubscribeCycleForAlarm(int subscribeCycleForAlarm) {
- this.subscribeCycleForAlarm = subscribeCycleForAlarm;
- }
- public boolean isSsrcCheck() {
- return ssrcCheck;
- }
- public void setSsrcCheck(boolean ssrcCheck) {
- this.ssrcCheck = ssrcCheck;
- }
- public String getGeoCoordSys() {
- return geoCoordSys;
- }
- public void setGeoCoordSys(String geoCoordSys) {
- this.geoCoordSys = geoCoordSys;
- }
- public String getTreeType() {
- return treeType;
- }
- public void setTreeType(String treeType) {
- this.treeType = treeType;
- }
- public String getPassword() {
- return password;
- }
- public void setPassword(String password) {
- this.password = password;
- }
- public String getSdpIp() {
- return sdpIp;
- }
- public void setSdpIp(String sdpIp) {
- this.sdpIp = sdpIp;
- }
- public String getLocalIp() {
- return localIp;
- }
- public void setLocalIp(String localIp) {
- this.localIp = localIp;
- }
- public int getKeepaliveIntervalTime() {
- return keepaliveIntervalTime;
- }
- public void setKeepaliveIntervalTime(int keepaliveIntervalTime) {
- this.keepaliveIntervalTime = keepaliveIntervalTime;
- }
- public boolean isAsMessageChannel() {
- return asMessageChannel;
- }
- public void setAsMessageChannel(boolean asMessageChannel) {
- this.asMessageChannel = asMessageChannel;
- }
- }
|