648540858
2022-10-18 1af77ab5f7c11a4b3d59c1989b51b9fca29679ce
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.genersoft.iot.vmp.vmanager.gb28181.platform.bean;
 
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
import io.swagger.v3.oas.annotations.media.Schema;
 
/**
 * 精简的channel信息展示,主要是选择通道的时候展示列表使用
 */
@Schema(description = "精简的channel信息展示")
public class ChannelReduce {
 
    /**
     * deviceChannel的数据库自增ID
     */
    @Schema(description = "deviceChannel的数据库自增ID")
    private int id;
 
    /**
     * 通道id
     */
    @Schema(description = "通道国标编号")
    private String channelId;
 
    /**
     * 设备id
     */
    @Schema(description = "设备国标编号")
    private String deviceId;
 
    /**
     * 通道名
     */
    @Schema(description = "通道名")
    private String name;
 
    /**
     * 生产厂商
     */
    @Schema(description = "生产厂商")
    private String manufacturer;
 
    /**
     * wan地址
     */
    @Schema(description = "wan地址")
    private String  hostAddress;
 
    /**
     * 子节点数
     */
    @Schema(description = "子节点数")
    private int  subCount;
 
    /**
     * 平台Id
     */
    @Schema(description = "平台上级国标编号")
    private String  platformId;
 
    /**
     * 目录Id
     */
    @Schema(description = "目录国标编号")
    private String  catalogId;
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getChannelId() {
        return channelId;
    }
 
    public void setChannelId(String channelId) {
        this.channelId = channelId;
    }
 
    public String getDeviceId() {
        return deviceId;
    }
 
    public void setDeviceId(String deviceId) {
        this.deviceId = deviceId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getManufacturer() {
        return manufacturer;
    }
 
    public void setManufacturer(String manufacturer) {
        this.manufacturer = manufacturer;
    }
 
    public String getHostAddress() {
        return hostAddress;
    }
 
    public void setHostAddress(String hostAddress) {
        this.hostAddress = hostAddress;
    }
 
    public int getSubCount() {
        return subCount;
    }
 
    public void setSubCount(int subCount) {
        this.subCount = subCount;
    }
 
    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;
    }
}