增加上级推流和停止推流的通知

This commit is contained in:
648540858
2023-06-28 16:52:27 +08:00
parent a77628e875
commit def56793ba
9 changed files with 151 additions and 14 deletions

View File

@@ -34,7 +34,7 @@ public class MessageForPushChannel {
/**
* 请求的平台自增ID
*/
private String platFormIndex;
private int platFormIndex;
/**
* 请求平台名称
@@ -132,11 +132,11 @@ public class MessageForPushChannel {
this.mediaServerId = mediaServerId;
}
public String getPlatFormIndex() {
public int getPlatFormIndex() {
return platFormIndex;
}
public void setPlatFormIndex(String platFormIndex) {
public void setPlatFormIndex(int platFormIndex) {
this.platFormIndex = platFormIndex;
}
}