648540858
2022-07-28 fd091e545ba174adc36a9d3370e6d4c040ad33fd
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;
    }
}