增加redis通道

This commit is contained in:
648540858
2023-06-27 15:34:38 +08:00
parent 724963324a
commit c7d1515023
4 changed files with 108 additions and 3 deletions

View File

@@ -1,7 +1,5 @@
package com.genersoft.iot.vmp.service.bean;
import java.util.stream.Stream;
/**
* 当上级平台
* @author lin
@@ -29,10 +27,15 @@ public class MessageForPushChannel {
private String gbId;
/**
* 请求的平台ID
* 请求的平台国标编号
*/
private String platFormId;
/**
* 请求的平台自增ID
*/
private String platFormIndex;
/**
* 请求平台名称
*/
@@ -128,4 +131,12 @@ public class MessageForPushChannel {
public void setMediaServerId(String mediaServerId) {
this.mediaServerId = mediaServerId;
}
public String getPlatFormIndex() {
return platFormIndex;
}
public void setPlatFormIndex(String platFormIndex) {
this.platFormIndex = platFormIndex;
}
}