上饶市公安局wvp平台
zhongrj
2023-06-27 2e98b20bea4463e4465e3c19059d0744a09aec06
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
package com.genersoft.iot.vmp.gb28181.vo;
 
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
import io.swagger.v3.oas.annotations.media.Schema;
 
/**
 * @author zhongrj
 * @date 2023-02-17
 */
@Schema(description = "通道信息VO")
public class DeviceChannelVO extends DeviceChannel {
 
    /**
     * 类型 0:车辆 1:摄像头 2:手台  3:执法记录仪
     */
    private String type;
 
    /**
     * 派出所名称
     */
    private String policeStationName;
 
    public String getPoliceStationName() {
        return policeStationName;
    }
 
    public void setPoliceStationName(String policeStationName) {
        this.policeStationName = policeStationName;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    @Override
    public String toString() {
        return "DeviceChannelVO{" +
                "type='" + type + '\'' +
                ", policeStationName='" + policeStationName + '\'' +
                '}';
    }
}