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 + '\'' +
|
'}';
|
}
|
}
|