1.根据redis消息更新推流列表时同时更新在线状态
2.推流列表的模板增加在线状态
This commit is contained in:
@@ -22,6 +22,9 @@ public class StreamPushExcelDto {
|
||||
@ExcelProperty("目录ID")
|
||||
private String catalogId;
|
||||
|
||||
@ExcelProperty("在线状态")
|
||||
private boolean status;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -70,4 +73,16 @@ public class StreamPushExcelDto {
|
||||
public void setCatalogId(String catalogId) {
|
||||
this.catalogId = catalogId;
|
||||
}
|
||||
|
||||
public boolean isStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public boolean getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(boolean status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user