临时提交

This commit is contained in:
648540858
2024-08-15 17:45:24 +08:00
parent 1cbd8d677c
commit abed3ecbec
32 changed files with 472 additions and 971 deletions

View File

@@ -352,7 +352,7 @@ public class CommonGBChannel {
commonGBChannel.setGbAddress(platform.getAddress());
commonGBChannel.setGbRegisterWay(platform.getRegisterWay());
commonGBChannel.setGbSecrecy(platform.getSecrecy());
commonGBChannel.setGbStatus(platform.getStatus());
commonGBChannel.setGbStatus(platform.isStatus()?"ON":"OFF");
return commonGBChannel;
}

View File

@@ -26,7 +26,7 @@ public class Platform {
private String serverGBDomain;
@Schema(description = "SIP服务IP")
private String serverIP;
private String serverIp;
@Schema(description = "SIP服务端口")
private int serverPort;
@@ -67,7 +67,7 @@ public class Platform {
@Schema(description = "在线状态")
private boolean status;
@Schema(description = "在线状态")
@Schema(description = "通道数量")
private int channelCount;
@Schema(description = "已被订阅目录信息")
@@ -94,9 +94,6 @@ public class Platform {
@Schema(description = "点播回复200OK使用的IP")
private String sendStreamIp;
@Schema(description = "是否使用自定义业务分组")
private Boolean customGroup;
@Schema(description = "是否自动推送通道变化")
private Boolean autoPushChannel;
@@ -130,7 +127,4 @@ public class Platform {
@Schema(description = "保密属性必选缺省为00-不涉密1-涉密")
private int secrecy = 0;
@Schema(description = "在线状态")
private String Status = "ON";
}

View File

@@ -17,7 +17,7 @@ public class PlatformCatch {
private String callId;
private Platform parentPlatform;
private Platform platform;
private SipTransactionInfo sipTransactionInfo;