648540858
2024-06-17 1909c7f71fc1b0e290678a3efe95b62d0b9df75e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.genersoft.iot.vmp.gb28181.bean;
 
public class DeviceChannelInPlatform extends DeviceChannel{
 
    private String platFormId;
    private String catalogId;
 
    public String getPlatFormId() {
        return platFormId;
    }
 
    public void setPlatFormId(String platFormId) {
        this.platFormId = platFormId;
    }
 
    public String getCatalogId() {
        return catalogId;
    }
 
    public void setCatalogId(String catalogId) {
        this.catalogId = catalogId;
    }
}