jiang
2022-08-18 8f77d0c25cdd37d4cc96c923b46ae28607bae51d
src/main/java/com/genersoft/iot/vmp/media/zlm/dto/StreamPushItem.java
@@ -103,6 +103,18 @@
     */
    private String createTime;
    /**
     * 是否正在推流
     */
    private boolean pushIng;
    /**
     * 是否自己平台的推流
     */
    private boolean self;
    public String getVhost() {
        return vhost;
    }
@@ -277,5 +289,21 @@
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
    public boolean isPushIng() {
        return pushIng;
    }
    public void setPushIng(boolean pushIng) {
        this.pushIng = pushIng;
    }
    public boolean isSelf() {
        return self;
    }
    public void setSelf(boolean self) {
        this.self = self;
    }
}