648540858
2022-01-05 6e0f7fae6eda7ffa18c4289d19a705f272174911
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.genersoft.iot.vmp.vmanager.gb28181.platform.bean;
 
import java.util.List;
 
public class UpdateChannelParam {
    private String platformId;
    private String catalogId;
    private List<ChannelReduce> channelReduces;
 
    public String getPlatformId() {
        return platformId;
    }
 
    public void setPlatformId(String platformId) {
        this.platformId = platformId;
    }
 
    public List<ChannelReduce> getChannelReduces() {
        return channelReduces;
    }
 
    public void setChannelReduces(List<ChannelReduce> channelReduces) {
        this.channelReduces = channelReduces;
    }
 
    public String getCatalogId() {
        return catalogId;
    }
 
    public void setCatalogId(String catalogId) {
        this.catalogId = catalogId;
    }
}