完成向上级联->通道推送

修复选择通道是查询的bug
This commit is contained in:
panlinlin
2021-01-14 14:49:38 +08:00
parent ccc188c113
commit 6c4da7bebe
14 changed files with 298 additions and 113 deletions

View File

@@ -94,6 +94,11 @@ public class ParentPlatform {
*/
private boolean status;
/**
* 在线状态
*/
private int channelCount;
public boolean isEnable() {
return enable;
@@ -238,4 +243,12 @@ public class ParentPlatform {
public void setStatus(boolean status) {
this.status = status;
}
public int getChannelCount() {
return channelCount;
}
public void setChannelCount(int channelCount) {
this.channelCount = channelCount;
}
}