648540858
2022-02-24 a42dda2bd3cc1cf8c20cc61e7ad9211eadecbaf3
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
34
35
36
37
38
39
40
41
42
43
package com.genersoft.iot.vmp.gb28181.bean;
 
import java.util.Date;
import java.util.List;
 
public class CatalogData {
    private int total;
    private List<DeviceChannel> channelList;
    private Date lastTime;
    private Device device;
 
    public int getTotal() {
        return total;
    }
 
    public void setTotal(int total) {
        this.total = total;
    }
 
    public List<DeviceChannel> getChannelList() {
        return channelList;
    }
 
    public void setChannelList(List<DeviceChannel> channelList) {
        this.channelList = channelList;
    }
 
    public Date getLastTime() {
        return lastTime;
    }
 
    public void setLastTime(Date lastTime) {
        this.lastTime = lastTime;
    }
 
    public Device getDevice() {
        return device;
    }
 
    public void setDevice(Device device) {
        this.device = device;
    }
}